Python Quiz – I 0% Python Quiz- I print() function click here to learn print() function NameEmail 1 / 22 What will be the output of print('sum=',5+2)? sum=5+2 sum7 sum= 7 2 / 22 What is be the output of print(False)? False false 3 / 22 What is be the output of print(type( [10,20,30] ))? <class 'list'> list LIST 4 / 22 What is be the output of print(type(2))? integer <class 'int'> int 5 / 22 What is be the output of print(type(True))? bool <class 'bool'> boolean 6 / 22 What is be the output of print(-3j)? -0-3j 0-3j -3j 7 / 22 What will be the output of print(10+5//2)? 12.5 7.5 12 8 / 22 What will be the output of print(10+5/2)? 7.5 12 12.5 9 / 22 Which of following statement will display welcome ? print(welcome) print welcome print('welcome') 10 / 22 What is be the output of print(2.7+3.8j)? 2.7 3.8j 2.7+3.8j 11 / 22 What is be the output of print(type(2.6))? real float <class 'float'> 12 / 22 What will be the output of print( ('a','b','c') )? ('a','b','c') 'a', 'b' ,'c' a b c 13 / 22 What will be the output of print(10*5)? 5 15 50 14 / 22 What is be the output of print(type(2+5j))? 'complex' <class 'complex'> complex 15 / 22 What will be the output of print( {1:'Aman',2:'Suman',3:'Rohan'} )? {1:'Aman' 2:'Suman' 3:'Rohan'} 1:'Aman',2:'Suman',3:'Rohan' {1:'Aman',2:'Suman',3:'Rohan'} 16 / 22 What will be the output of print(20.55e4)? 2055 205500 20550 17 / 22 Which function in Python is used to display output? eval() print() input() 18 / 22 What will be the output of print(10,5)? 10 5 10,5 10 19 / 22 What is be the output of print(type( (4,5,22,33) )? tuples tuple <class 'tuple'> 20 / 22 What will be the output of print([10,20,30] )? 10,20,30 [10,20,30] 10 20 30 21 / 22 What is be the output of print(type( {'a':1,'e':2,'i':3,'o':4,'u':5}))? <class 'dict'> dictionary dict 22 / 22 What is be the output of print(type('hello'))? <class 'str'> string str Your score is LinkedIn Facebook Twitter VKontakte 0% Restart quiz Spread the love Lesson tags: print() function quiz, python quiz Cloud Computing and Blockchain Technology - Class 11 computer science Python Quiz-II | input() & eval() Back to: CBSE class 11 Computer Science NotesSpread the love