wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Weekly Contest #2 - TechXNinjas

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

JAVA is the most secure programming language because...

Hint: Multiple answers are correct.

a)

JAVA does not contain pointers

b)

Due to garbage collection in JAVA

c)

It is a high-level language

d)

It is an open-source platform

2.

Determine whether the following statement is true or false.

And choose the appropriate reason.

Statement: Python is a Statically type language.

a)

True (because we need to declare the datatype first)

b)

True (No need to declare datatype)

c)

False (It is a dynamic type programming language)

d)

False (because we need to declare the datatype first)

3.

Choose the Appropriate Full Form of "IDE"

a)

Integrated Data Encoder

b)

Interface Development Engine

c)

Integrated Development Environment

d)

Integrated Design Executor

4.

Complete the following relation

Static----->compile time : : Dynamic-----> (a)  

5.

int a =10, b=20, temp = 0;

temp = a;

a = b;

b = temp;

The values of b, and a become ___ and ___ respectively.

a)

10, 20

b)

10, 10

c)

20, 10

d)

20, 20

6.

"%d" is a placeholder used for which datatype

a)

float

b)

byte

c)

integer

d)

string

7.

Incremental operators i++ is...

a)

binary postfix operator

b)

unary postfix operator

c)

ternary prefix operator

d)

unary prefix operator

8.

Which of the following operators helps to find the first digit of a number

a)

%

b)

//

c)

/

d)

÷

9.

Type the symbol of the "Bitwise OR" operator

(a)  

10.

The time complexity for inserting and deleting elements at the last index of the array is

a)

O(n^2)

b)

O(n)

c)

O(n log(n) )

d)

O(1)