wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

CIPHER QUEST ROUND 1 SET 2

Total questions: 25

Worksheet time: 8mins

Name
Class
Date
1.

What has a ring but no finger?

a)

A Telephone

b)

A Key

c)

A Tree

2.

What can travel around the world while staying in a corner?

a)

A Stamp

b)

A Plane

c)

A Compass

3.

Guess the logo

a)

BP

b)

Baskin Robbins

c)

Target

d)

Walmart

4.

Guess the logo

a)

Converse

b)

Nike

c)

Georgiana Armani

d)

Reebok

5.

Which number replaces the question Mark

a)

43

b)

39

c)

38

d)

31

6.

Which letter Replaces the question Mark

a)

9

b)

6

c)

5

d)

4

7.

Guess the flag

a)

Thailand

b)

Laos

c)

Cambodia

d)

Nepal

8.

Guess the Flag

a)

Costa Rica

b)

Paraguay

c)

Netherlands

d)

Thailand

9.

Guess the word

a)

Downtown.

b)

Down

c)

midtown

d)

uptown

10.

Guess the word

a)

Get up

b)

Awaken

c)

ekaw

d)

Wake up

11.

Who is called the “Father of Java”?

a)

Guido van Rossum

b)

Bjarne Stroustrup

c)

James Gosling

d)

John McCarthy

12.

is Java platform dependent or independent?

a)

Platform Independent

b)

Platform Dependent

c)

None of the Above

d)

Both a & b

13.

In Python, tupule are:

a)

Mutable

b)

Immutable

c)

Constant

d)

Static

14.

class Test {

    public static void main(String[] args) {

        String s1 = "hello";

        String s2 = new String("hello");

        System.out.println(s1.equals(s2));

    }

}

a)

false

b)

true

c)

hello

d)

Error

15.

for i in range(1,10,2)

    print(i)

a)

1 2 3 4 5

b)

1 3 5 7 9

c)

2 4 6 8 10

d)

0 2 4 6 8

16.

Who is called the “Father of Artificial Intelligence”?

a)

Elon Musk

b)

John McCarthy

c)

Alan Turing

d)

Geoffrey Hinton

17.

Which protocol is connection-less protocol?

a)

 UDP

b)

TCP

c)

HTTP

d)

 FTP

18.

What Type of Language is HTML?

a)

Scripting Language

b)

Markup Language

c)

Network Protocol

d)

Programming Language

19.

Which is the Standard Protocol used for transmitting  E-mail from a mail server?

a)

SMTP

b)

POP3

c)

HTTP

d)

FTP

20.

IPv6 address size:

a)

32 bits

b)

64 bits

c)

128 bits

d)

256 bits

21.

In java the keyword super refers to ?

a)

The current object of the class

b)

The parent of the current object

c)

A static method of the class

d)

A private member of the class

22.

import java.util.Arrays;

public class TestArray {

    public static void main(String[] args) {

        int arr[] = new int[6];

        for (int i = 0; i < arr.length; i++) {

            arr[i] = i;

        }

        System.out.println(arr);

    }

}

a)

Null Value

b)

Garbage value

c)

[I@1a2b3c

d)

Index out of bound Exception

23.

AI used for language understanding:

a)

NLP

b)

CV

c)

 RL

d)

ANN

24.

Deadlock necessary condition:

a)

Mutual exclusion

b)

Circular wait

c)

Hold & wait

d)

 All

25.

Cloud computing type combining public + private:

a)

Public

b)

Private

c)

Hybrid

d)

Community