Chapter 6: Sequences

 

Results

Previous
Next

#1. Python offers a range of compound datatypes often referred to as ________

Previous
Next

#2. A ______ is created by placing all the items inside a square bracket separated by commas.

Previous
Next

#3. The _____ operator to access an item in a list.

Previous
Next

#4. Python allows ______ indexing for its sequences.

Previous
Next

#5. We can access a range of items in a list by using the _______ operator.

Previous
Next

#6. List are ______, their elements can be changed unlike string or tuple.

Previous
Next

#7. We can add one item to a list using _____ method.

Previous
Next

#8. We can add several items in list using _____ method.

Previous
Next

#9. We can also use ____ operator to combine two lists.

Previous
Next

#10. The _______ operator repeats a list for the given number of times.

Previous
Next

#11. Insert an item at the defined index.

Previous
Next

#12. Removes an item from the list.

Previous
Next

#13. Removes and returns an element at the given index.

Previous
Next

#14. Removes all items from the list.

Previous
Next

#15. We can test if an item exists in a list or not, using the keyword _____

Previous
Next

#16. _____ cannot change the elements once it is assigned.

Previous
Next

#17. A ________ is created by placing all the items inside a parentheses() separated by comma.

Previous
Next

#18. An ______ is a data structure that stores values of same data type.

Previous
Next

#19. Add items from list into array using _______ method.

Previous
Next

#20. Reverse a python array using _____ method.

Previous
Next

#21. Check for number of occurrences of an element using ____ method.

Previous
Next

#22. Convert array to string using _____ method.

Previous
Next

#23. Convert array to a python list with same elements using _____ method.

Previous
Next

#24. Append a string to char array using _______ method.

Previous
Next

#25. __________ is an algorithm which is used to sort N elements that are given in a memory.

Previous
Finish