One
Two
Three
Any Number of Times
Oval
Rectangle
Arrow
Diamond
Sub Function
Recursion
Reverse Polish Notation
Traversal Algorithm
What is the return type of following function ?
def func1(): return 'mnp',22 print(type(func1()))
List
Dictionary
String
Tuple
Selection
Sequential
Simple
Loop
A Circle
Parallelogram
A Diamond
a
ar+
r+
w
What will be the output of the following Python code?
from math import pow print(math.pow(2,3))
Nothing is printed
8
Error, method pow doesn’t exist in math module
Error, the statement should be: print(pow(2,3))
A stage of all projects
Finding broken code
Evaluating deliverable to find errors
None of the above
What will be the output after the following statements?
a = 0 b = 3 while a + b < 8: a += 1 print(a, end='')
0 1 2 3 4
1 2 3 4 5 6
1 2 3 4 5
None of these
Heap
Stack
Uninitialized data segment
What will be the output of the following expression ?
x =4 print(x<<2)
4
16
6
2
list=()
list.null
null.list
list=[]
ab
rw
a+
To make a Matrix with all diagonal element 0
To make a Matrix with first row 0
To make a Matrix with all elements 0
What will be the output of the following?
def iq(a,b): if(a==0): return b else: return iq(a-1,a+b) print(iq(3,6))
9
10
11
12
readlines()
read()
Both of the above
What does the following code print ?
x = 'mohan' for i in range (len(x)): x[i].upper() print (x)
mohan
MOHAN
Error
None of These
What will be the output after following statements?
x = 2 if x < 5: print(x) else: pass
2 3 4
1 2 3 4
.pym
.pymodule
module
.py