Advertisements
Advertisements
Differentiate Concrete data type and abstract datatype.
Concept: undefined >> undefined
Which of the following refers to the visibility of variables in one part of a program to another part of the same program.
Concept: undefined >> undefined
Advertisements
Which scope refers to variables defined in current function?
Concept: undefined >> undefined
Why scope should be used for variable. State the reason.
Concept: undefined >> undefined
Identify the scope of the variables in the following pseudo-code and write its output
color:= Red
mycolor():
b:=Blue
myfavcolor():
g:=Green
printcolor, b, g
myfavcolor()
printcolor, b
mycolor()
print color
Concept: undefined >> undefined
Discuss Algorithmic complexity and its types.
Concept: undefined >> undefined
What are the factors that influence time and space complexity?
Concept: undefined >> undefined
Which of the following is not a Keyword in Python?
Concept: undefined >> undefined
How many important control structures are there in Python?
Concept: undefined >> undefined
Elif can be considered to be the abbreviation of ______.
Concept: undefined >> undefined
Which statement is generally used as a placeholder?
Concept: undefined >> undefined
The condition in the if statement should be in the form of ______
Concept: undefined >> undefined
Which is the most comfortable loop?
Concept: undefined >> undefined
What is the output of the following snippet?
i=1
while True:
if i%3 ==0:
break
print(i,end='')
i +=1
Concept: undefined >> undefined
What is the output of the following snippet?
T=1
while T:
print(True)
break
Concept: undefined >> undefined
Which amongst this is not a jump statement?
Concept: undefined >> undefined
Which punctuation should be used in the blank?
if<condition>_
statement-block 1
else:
statement-block 2
Concept: undefined >> undefined
List the control structures in Python.
Concept: undefined >> undefined
Write a note on the break statement.
Concept: undefined >> undefined
