Discover
Questions library
Collections library
Find online teacher
login
Discover
questions library
Find online teacher
login
Popular Searches:
if-else
class-diagram
flowchart
Polymorphism
Home
Questions
Python programming
Python programming MCQ Questions
Post A Question
Classifications:
Python programming Assignments
Python programming exam questions
Python programming examples
Python programming Interview questions
Python programming Projects
Python programming quiz questions
MCQ Questions Categories:
Medicine MCQ Questions
Networks MCQ Questions
Java programming MCQ Questions
C++ programming MCQ Questions
C programming MCQ Questions
c# programming MCQ Questions
Database MCQ Questions
Php programming MCQ Questions
Show Collections (0)
Show Questions (55)
No collections found!
Are nested if-else are allowed?
YasminRadwan26
2022-05-27
1 answers
350 Views
0 Likes
Output is: print(\"Hello {0[0]} and {0[1]}\".format((\'foo\', \'bin\')))
YasminRadwan26
2022-05-27
1 answers
851 Views
6 Likes
Which of the following data type use Key:pair
YasminRadwan26
2022-05-27
1 answers
377 Views
1 Likes
Output is: a=[1,2,3,4] b=[sum(a[0:x+1]) for x in range(0,len(a))] print(b)
YasminRadwan26
2022-05-27
1 answers
1029 Views
3 Likes
Guess the output: a=[14,52,7] b=a.copy() b is a
YasminRadwan26
2022-05-27
1 answers
371 Views
0 Likes
Assume the output: a=list((45,)*4) print((45)*4) print(a)
YasminRadwan26
2022-05-27
1 answers
803 Views
0 Likes
Output is: l = [1,2,6,5,7,8] l.insert(9)
YasminRadwan26
2022-05-27
1 answers
734 Views
1 Likes
Predict the output: List = [True, 50, 10] List.insert(2, 5) print(List, \"Sum is: \", sum(List))
YasminRadwan26
2022-05-27
1 answers
410 Views
0 Likes
Output is: x = [i**+1 for i in range(3)] print(x)
YasminRadwan26
2022-05-27
1 answers
237 Views
0 Likes
Assume the output values : [[3, 4, 5, 1], [33, 6, 1, 2]] v = values[0][0] for lst in values: for element in lst: if v > element: v = element print(v)
YasminRadwan26
2022-05-27
1 answers
563 Views
4 Likes
Which of the following statement is correct
YasminRadwan26
2022-05-27
1 answers
336 Views
0 Likes
Suppose list1 is [1, 3, 2], What is list1 * 2 ?
YasminRadwan26
2022-05-27
1 answers
338 Views
0 Likes
Assume the output : list1 = [1, 2, 3, 4] list2 = [5, 6, 7, 8] print(len(list1 + list2))
YasminRadwan26
2022-05-27
1 answers
308 Views
0 Likes
Show More