wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Coding Contest - Round 1

Total questions: 30

Worksheet time: 15mins

Name
Class
Date
1.

If 8 – 8 =63 and 6 – 6 =35 then find the value of 11 – 11=?

a)

116

b)

120

c)

134

d)

128

2.

What does HTML stand for?

a)

Hyper Trainer Marking Language

b)

Hyper Text Marketing Language

c)

Hyper Text Markup Language

d)

 Hyper Text Markup Leveler

3.

A clock shows 5 o’clock in the evening. How many degrees would the hour hand have rotated when the clock shows 11 o’clock at night?

a)

120

b)

180

c)

150

d)

210

4.

 PARLE is related to QCUPJ in the same way as DABUR is related to ______.

a)

QDSFA

b)

ACIED

c)

HEAIS

d)

 ECEYW

5.

What will be the circumference of a circle inscribed inside a square of side 23m ?

a)

10π

b)

11.5π

c)

23π

d)

46π

6.

 In a company, 50% of the employees like coffee, 20% like tea, and 10% like both. If 80 employees are working in the company, how many employees like neither coffee nor tea?

a)

16

b)

32

c)

20

d)

24

7.

Two notebooks of same price were bought for Rs. 74.8 at a discount of 15%. What is the original price of each of the notebooks ?

a)

22

b)

44

c)

66

d)

11

8.

A metro train 55 meters long is running at a speed of 120 kmph. In what time will it pass a woman who is jogging at 3 kmph in the direction opposite to that in which the train is going?

a)

2.4

b)

3.2

c)

1.6

d)

1.2

9.

 How many squares are there in the following image?

a)

25

b)

27

c)

28

d)

26

10.

 choose the correct option to fill in the blank.

The radius of a wheel is 3m. The wheel rolls 14 times in a minute. To cover a distance of 5.280 km, the wheel will take ____ minutes

a)

10

b)

20

c)

5

d)

25

11.

Ramesh decides to add tiles to a rectangle-shaped floor that measures 90m x 74m. To add the tiles, the mason charges Rs.11 per sq.m. Find the amount that Ramesh needs to pay the mason.

a)

Rs. 86200

b)

Rs.73260

c)

Rs. 69480

d)

Rs.84532

12.

What is the OOPs concept?

a)

objects

b)

classes

c)

inheritance

d)

All that mentioned

13.

Which of the following is the correct extension of the Python file?

a)

.python

b)

.pl

c)

.py

d)

.p

14.

 Is Python code compiled or interpreted?

a)

Python code is both compiled and interpreted

b)

 Python code is neither compiled nor interpreted

c)

Python code is only compiled

d)

 Python code is only interpreted

15.

 What will be the value of the following Python expression?

4 + 3 % 5

a)

7

b)

2

c)

4

d)

1

16.

Who invented Java Programming?

a)

Guido van Rossum

b)

James Gosling

c)

Dennis Ritchie

d)

 Bjarne Stroustrup

17.

 What is the extension of compiled java classes?

a)

.txt

b)

.js

c)

.class

d)

.java

18.

 Which of these are selection statements in Java?

a)

break

b)

continue

c)

for()

d)

if()

19.

Which of the following is a superclass of every class in Java?

a)

ArrayList

b)

Abstract class

c)

object class

d)

string

20.

All keywords in C language are in

a)

lowercase

b)

uppercase

c)

camel case

d)

none of them

21.

what is short int in C programming?

a)

Qualifier

b)

short is the qualifier and int is the basic data type

c)

the basic data type of C

d)

All of the mentioned

22.

what is an example of iteration in c?

a)

for

b)

while

c)

do-while

d)

all the mentioned

23.

Which of the following is not a core data type in Python programming?

a)

tuple

b)

list

c)

class

d)

dictionary

24.

What will be the output of the following Python code snippet?

for i in [1, 2, 3, 4][::-1]:

print (i)

a)

4 3 2 1

b)

error

c)

1 2 3 4

d)

none of the mentioned

25.

Which one of the following is not a keyword in Python language?

a)

pass

b)

eval

c)

asset

d)

nonlocal

26.

what is #include<stdio.h>?

a)

preprocessor directive

b)

inclusion directive

c)

file inclusion directive

d)

none of the above

27.

What will be the output of the following Python code?

a)

12

b)

224

c)

none

d)

error

28.

Which of the following statements is used to create an empty set in Python?

a)

()

b)

[]

c)

{}

d)

set()

29.

which of the following return type cannot be used for a function in C

a)

Char *

b)

struct

c)

void

d)

none of the above

30.

what is the sizeof(char) in a 32 bit C

a)

1 bit

b)

2 bits

c)

1 byte

d)

2 bytes