Please select a subject first
Advertisements
Advertisements
Discuss Algorithmic complexity and its types.
Concept: undefined >> undefined
What are the factors that influence time and space complexity?
Concept: undefined >> undefined
Advertisements
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
Write is the syntax of if..else statement?
Concept: undefined >> undefined
Define control structure.
Concept: undefined >> undefined
Write a note on the range () in the loop?
Concept: undefined >> undefined
Write a program to display.
A
A B
A B C
A B C D
A B C D E
Concept: undefined >> undefined
Write a note on if..else structure.
Concept: undefined >> undefined
Using if..else..Elif statement writes a suitable program to display the largest of 3 numbers.
Concept: undefined >> undefined
