NEW
Font size
WorksheetsRound 2
Total questions: 15
Worksheet time: 8mins
What is the common feature of a microservices architecture?
Monolithic Structure
Scalability
Centralized Data Storage
Independent Deployment
What are the primary components of a typical cloud computing architecture?
Virtualization
Hypervisor
Database
Containerization
Which of the following are examples of quantum computing hardware manufacturers?
D-Wave Systems
Rigetti Computing
Intel
What are some common features of federated learning?
Centralized Model Training
Low Latency Communication
Device Heterogeneity
High Bandwidth Requirements
Which of the following are examples of edge computing devices?
Raspberry Pi
Amazon Echo
Google Nest Hub
Microsoft Azure Sphere
What are some common features of a serverless architecture?
Always-on Servers
Infrastructure Management
State Management
Auto-scaling
'DTP' computer abbreviation usually means ?
Digital Transmission Protocol
DeskTop Publishing
Data Type Programming
Document Type Processing
Who built the world's first binary digit computer: Z1...?
Konrad Zuse
Ken Thompson
Alan Turing
George Boole
What was the first ARPANET message?
"hello world"
"lo"
"mary had a little lamb"
"cyberspace, the final frontier"
Who co-founded Hotmail in 1996 and then sold the company to Microsoft?
Shawn Fanning
Ada Byron Lovelace
Ray Tomlinson
Sabeer Bhatia
Consider the following JAVA code. Which is the correct option?
class Test {
public static void main(String[] args) {
for(int i = 0; 1; i++) {
System.out.println("Hello");
}
}
}
Infinite loop
Error: condition expression of for
prints Hello
None of the above
What is the output of the code snippet?
class Code {
public static void main(String args[]) {
System.out.println(value());
}
int value() {
return 1;
}
}
0
1
Compilation error
Runtime error
What will be the output of the following code
public class A {
public static void main(String[] args)
{
int $_ = 5;
System.out.println($_*5);
}
}
Error: invalid identifier
25
55
None of the above
What will be the output of the following code?
#include <stdio.h>
void solve() {
int a = 3;
int res = a++ + ++a + a++ + ++a;
printf("%d", res);
}
int main() {
solve();
return 0;
}
12
20
24
18
Find the output...
interface Foo{ int x = 10;}
public class Test {
public static void main(String[] args) {
Foo.x = 20;
System.out.println(Foo.x);
}
}
Prints 10
Prints 20
Compile Time error
Runtime error
