Prutor Python Quiz 2 by anupmaurya June 13, 2021 written by anupmaurya June 13, 2021 256 Welcome to your Prutor Python Quiz 2 If list=[‘red’ , ‘blue’ , ‘green’ , ‘yellow’] , what will be the output of : list.pop() print (list) ? a) yellow b) red’, ‘blue’, ‘green’ c) blue’, ‘green’, ‘yellow’ d) error If you want to use an item after you remove from what, which function should you use? a) del() b) not possible c) remove() d) pop() If list=[‘suzuki’, ‘subaru’, ‘honda’, ‘maruti’] , what will be the output of print(list[3]), after running the function : list.sort(reverse=True) ? a) suzuki b) subaru c) honda d) maruti Which statement is correct? a) sorted() method sorts the items in ascending order b) sorted() method maintains the sorted order of the items in the list c) Both A and B d) Neither A nor B Which method is used to arrange the items in a list in ascending order? a) sort() b) arrange() c) sort(reverse=True) d) ascend() What is used for performing a repetitive tasks in Python? a) Counters b) Lists c) Arrays d) Loops How is a line, or a group of lines related to the rest of the program? a) square brackets [] b) indentation c) braces {} d) parentheses () If numbers=[1, 2, 3, 4, 5] , then how to get the largest value of this list? a) high(numbers) b) max(numbers) c) large(numbers) d) sum(numbers) What should come in the blank if we want to print HI! 6 times? for i inrange( ): print(“HI!”) a) 1,5 b) 1,6 c) 5 d) 1,7 Which of the following is a valid singleton tuple? a) single=(1) b) single=1, c) single=() d) single=1 Time's up 0 comment 0 FacebookTwitterPinterestEmail anupmaurya Hey there, My name is Anup Maurya. I was born with love with programming and worked with TCS. One of best global (IT) services and consulting company as System Administrator . I also love graphics designing. It's my pleasure to have you here. previous post Prutor Python Quiz 3 next post Prutor Python Quiz 9 Leave a Comment Cancel Reply Save my name, email, and website in this browser for the next time I comment.