0 of 13 questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 13 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
You have the potential to do better! 🙂
If you found a concept confusing on this page then please leave a comment below asking for clarity.
Try re-reading the tutorial on this page before you retake this quiz!
Good work on clearing this quiz!
Outstanding work! You have mastered this lesson. Onward to the next one!
In python enumerate() method adds a ________ to an iterable and returns it in a form of enumerate object.
In sum() iterable can be any _______________, but most importantly it should be numbers.
What will be output of the following code?
 a = [4,12,43.3,19,”John” ]
print (min(a) )
The max() function is used to compute the minimum of the values passed in its argument.
The _________ method filters the given sequence with the help of a function that tests each element in the sequence to be true or not.
map() function returns a list of the results after applying the given function to each item of a given iterable.
reversed() method returns an iterator that accesses the given sequence in the __________ order.
Is the given syntax correct for python reversed() function.
reversed(sequ)
len() function is an ________ function in Python programming language that returns the length of the string.
Suppose list1 is [2445,133,12454,123], what is max(list1) ?
Suppose list1 is [3, 5, 25, 1, 3], what is min(list1) ?
Suppose list1 is [1, 5, 9], what is sum(list1) ?
Suppose d = {“john”:40, “peter”:45}. To obtain the number of entries in dictionary which command do we use?