Question 1
What does the sorted( ) function return when applied to a list?
Question 2
Which function is used to remove and return the last element of a python list?
Question 3
What does the len( ) function return when applied to a python list?
Question 4
Which function can be used to clear all elements from a python list?
Question 5
Which function can be used to count the occurrences of a specific element in a python list?
Question 6
Which built-in function in python is used to add an element to the end of a list?
Question 7
What does the join( ) function do when applied to a list of strings?
Question 8
What does the max( ) function return when applied to a list of numbers?
Question 9
Which function is used to reverse the elements of a python list in place?
Question 10
Which function can be used to find the index of the first occurrence of a specific element in a list?