NEW
Font size
WorksheetsCoding Contest - Round 1
Total questions: 30
Worksheet time: 15mins
If 8 – 8 =63 and 6 – 6 =35 then find the value of 11 – 11=?
116
120
134
128
What does HTML stand for?
Hyper Trainer Marking Language
Hyper Text Marketing Language
Hyper Text Markup Language
Hyper Text Markup Leveler
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?
120
180
150
210
PARLE is related to QCUPJ in the same way as DABUR is related to ______.
QDSFA
ACIED
HEAIS
ECEYW
What will be the circumference of a circle inscribed inside a square of side 23m ?
10π
11.5π
23π
46π
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?
16
32
20
24
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 ?
22
44
66
11
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?
2.4
3.2
1.6
1.2
How many squares are there in the following image?
25
27
28
26
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
10
20
5
25
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.
Rs. 86200
Rs.73260
Rs. 69480
Rs.84532
What is the OOPs concept?
objects
classes
inheritance
All that mentioned
Which of the following is the correct extension of the Python file?
.python
.pl
.py
.p
Is Python code compiled or interpreted?
Python code is both compiled and interpreted
Python code is neither compiled nor interpreted
Python code is only compiled
Python code is only interpreted
What will be the value of the following Python expression?
4 + 3 % 5
7
2
4
1
Who invented Java Programming?
Guido van Rossum
James Gosling
Dennis Ritchie
Bjarne Stroustrup
What is the extension of compiled java classes?
.txt
.js
.class
.java
Which of these are selection statements in Java?
break
continue
for()
if()
Which of the following is a superclass of every class in Java?
ArrayList
Abstract class
object class
string
All keywords in C language are in
lowercase
uppercase
camel case
none of them
what is short int in C programming?
Qualifier
short is the qualifier and int is the basic data type
the basic data type of C
All of the mentioned
what is an example of iteration in c?
for
while
do-while
all the mentioned
Which of the following is not a core data type in Python programming?
tuple
list
class
dictionary
What will be the output of the following Python code snippet?
for i in [1, 2, 3, 4][::-1]:
print (i)
4 3 2 1
error
1 2 3 4
none of the mentioned
Which one of the following is not a keyword in Python language?
pass
eval
asset
nonlocal
what is #include<stdio.h>?
preprocessor directive
inclusion directive
file inclusion directive
none of the above
What will be the output of the following Python code?
12
224
none
error
Which of the following statements is used to create an empty set in Python?
()
[]
{}
set()
which of the following return type cannot be used for a function in C
Char *
struct
void
none of the above
what is the sizeof(char) in a 32 bit C
1 bit
2 bits
1 byte
2 bytes
