wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Round 2

Total questions: 15

Worksheet time: 8mins

Name
Class
Date
1.

What is the common feature of a microservices architecture?

a)

Monolithic Structure

b)

Scalability

c)

Centralized Data Storage

d)

Independent Deployment

2.

What are the primary components of a typical cloud computing architecture?

a)

Virtualization

b)

Hypervisor

c)

Database

d)

Containerization

3.

Which of the following are examples of quantum computing hardware manufacturers?

a)

D-Wave Systems

b)

Google

c)

Rigetti Computing

d)

Intel

4.

What are some common features of federated learning?

a)

Centralized Model Training

b)

Low Latency Communication

c)

Device Heterogeneity

d)

High Bandwidth Requirements

5.

Which of the following are examples of edge computing devices?

a)

Raspberry Pi

b)

Amazon Echo

c)

Google Nest Hub

d)

Microsoft Azure Sphere

6.

What are some common features of a serverless architecture?

a)

Always-on Servers

b)

Infrastructure Management

c)

State Management

d)

Auto-scaling

7.

'DTP' computer abbreviation usually means ?

a)

Digital Transmission Protocol

b)

DeskTop Publishing

c)

Data Type Programming

d)

Document Type Processing

8.


Who built the world's first binary digit computer: Z1...?

a)

Konrad Zuse

b)

Ken Thompson

c)

Alan Turing

d)

George Boole

9.

What was the first ARPANET message?

a)

"hello world"

b)

"lo"

c)

"mary had a little lamb"

d)

"cyberspace, the final frontier"

10.

Who co-founded Hotmail in 1996 and then sold the company to Microsoft?

a)

Shawn Fanning

b)

Ada Byron Lovelace

c)

Ray Tomlinson

d)

Sabeer Bhatia

11.

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");

}

}

}

a)

Infinite loop

b)

Error: condition expression of for

c)

prints Hello

d)

None of the above

12.

What is the output of the code snippet?

class Code {

public static void main(String args[]) {

System.out.println(value());

}

int value() {

return 1;

}

}

a)

0

b)

1

c)

Compilation error

d)

Runtime error

13.

What will be the output of the following code

public class A {

public static void main(String[] args)

{

int $_ = 5;

System.out.println($_*5);

}

}

a)

Error: invalid identifier

b)

25

c)

55

d)

None of the above

14.

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;

}

a)

12

b)

20

c)

24

d)

18

15.

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);

}

}

a)

Prints 10

b)

Prints 20

c)

Compile Time error

d)

Runtime error