What will be the output of the following python code?
from math import * floor(11.7)
12
11
11.0
none of these
Compiler
Interpreter
Assembler
None of these
2 3 -3 3.3
3 4 -3 3
2 3 -3 3
2 3 -3 -3.3
What will be the output of the following expression
x=14 print(x>>2)
14
1
3
2
What is the output of the following?
m=0 while m<5: m+=1 if m==3: break else: print(0)
0 1 2 0
0 1 2
0 0 1 0 2
error
k^1
k**1
k^ ^1
k^*1
//
?
<
and
n=5 while n>0: n-=1 if n==2: continue print(n,end=' ')
5 4 3 1 0
4 3 1 0
4 3 2
colon
comma
semicolon
hyphen
unichr (x)
oct (x)
chr(x)
None of the these
generates a list of numbers, to iterate over with for loops
immediate exit from the innermost loop structure.
returned an iterator a sequence object.
Arranging numbers whether in ascending or descending order.
for
While
do-while
sqrt
rhombus
add
Sub
True
false
ValueError occurs
TypeError occurs
#
=
/
&
abc=2,00,000
a,b,c=200,300,400
a_b_c= 2,00,000
abc=200 300 400
5.5
3.5
None of the above
Entry Controlled Loop
Exit Controlled Loop
Both of the above
Yes
No
if / else not used in python
None of the above.
; (semicolon)
,(Comma)
: (colan)