NEW
Font size
WorksheetsCLASS 8 COMPUTER REVISION
Total questions: 11
Worksheet time: 8mins
What is the extension of a python file
.pp
.py
.pt
……………. cloud service that can be accessed by any user with an internet connection.
Public
Private
When number of iterations is not known beforehand we may use this .................loop
foor
while
x=5
while x<10:
x=x+2
print(x)
10
11
12
13
What is the answer to this expression, 22%3 is
7
1
0
5
Which is the correct operator for power xy
x^y
x**y
x^^y
None of these
What is the output of this expression, 3*1**3
27
9
3
1
is Python case sensitive when dealing with identifiers?
yes
no
machine dependent
none of these
is python is platform independent
yes
no
What is the result of following Program in python3
a=10
b=20
c=a+b
print("Sum is"+c)
Sum 30
Sum is 30
error
30
What is the result of following Program in python3
for i in range(1,4):
print(i)
if(i==2):
break;
1
1
2
1
2
3
4
error
