#1. _______ refer to a file containing python statements and definitions.
Previous
Next
#2. A file containing python code is called a ________
Previous
Next
#3. Module provides _________ of code.
Previous
Next
#4. We can _____ the definitions inside a module to another module or the interactive in Python.
Previous
Next
#5. Using the module name we can access the function using ___ operation.
Previous
Next
#6. What is the default value of encoding in encode() windows?
Previous
Next
#7. The _____ function to find out names that are defined inside a module.
Previous
Next
#8. Python has _______ for directories and modules for files.
Previous
Next
#9. We can convert one type of number into another. this is also known as __________
Previous
Next
#10. Python offers module like ______ and random to carry out different mathematics like trignometry etc.
Previous
Next
#11. Python provides operations involving fractional numbers through its _______ module.
Previous
Next
#12. _______ represents an entity in the real world with its identify and behaviour.
Previous
Next
#13. Which operator is overloaded by _invert_()?
Previous
Next
#14. Suppose list1 is [2,33,222,14,25], what is list1[-1]?
Previous
Next
#15. Which of the following functions is a built-in-functions in python?
Previous
Next
#16. __________ sort algorithm is used to arrange a list of elements in a particular order.
Previous
Next
#17. _______ sort algorithm arranges a list of elements in a particular order.
Previous
Next
#18. ______ is a process of finding a value in a list of values.
Previous
Next
#19. ______ is a method for finding a particular value in a list that checks each element in sequence until the desired element is found or the list is exhausted.
Previous
Next
#20. _______ search a sorted list by repeatedly dividing the search interval in half.
Previous
Next
#21. Evaluate the expression given below if A=16 and B=15.A%B||A
Previous
Next
#22. The expression a[5] will match ________ characters with the previous regular expression.
Previous
Next
#23. Suppose list1 is [1,5,9], what is sum(list1)?
Previous
Next
#24. In Python case sensitive when dealing with identifiers?
Previous
Next
#25. What datatype is the object below?L=[1,23,”hello”,1]