Prutor Python Quiz 2 by anupmaurya June 13, 2021 written by anupmaurya 0 minutes read 368 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 None 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() None 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 None 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 None Which method is used to arrange the items in a list in ascending order? a) sort() b) arrange() c) sort(reverse=True) d) ascend() None What is used for performing a repetitive tasks in Python? a) Counters b) Lists c) Arrays d) Loops None 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 () None 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) None 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 None Which of the following is a valid singleton tuple? a) single=(1) b) single=1, c) single=() d) single=1 None Time's up 0 FacebookTwitterPinterestEmail anupmaurya "Hi there, My name is Anup Maurya. I have a passion for programming and previously worked at TCS, one of the best global IT services and consulting companies, as a System Administrator. I also enjoy graphic design. It's a 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.