Chapter 3: Condition Execution

 

Results

Previous
Next

#1. In Python, the body of the if statement is indicated by the _______

Previous
Next

#2. _______ is used to separate the blocks.

Previous
Next

#3. Iterating over a sequence is called _______

Previous
Next

#4. ______ continues until we reach the last item in the sequence.

Previous
Next

#5. We can generate a sequence of numbers using _____ function.

Previous
Next

#6. _____ loop is used to iterate over a block of code as long as the test expression.

Previous
Next

#7. The _____ statement terminates the loop containing it.

Previous
Next

#8. Python have

Previous
Next

#9. The _____ statement is used to skip the rest of the code inside a loop for the current iteration only.

Previous
Next

#10. _______ represents an entity in the real world with its identify and behaviour.

Previous
Next

#11. Where is function defined?

Previous
Next

#12. What is the output of the expression:round(4.576)?

Previous
Next

#13. The expression a[5] will match ________ characters with the previous regular expression.

Previous
Next

#14. Which of the following expressions can be used to multiply a given number “a” by 4?

Previous
Next

#15. _____ is used to create an object.

Previous
Next

#16. Which of these is not a core datatype?

Previous
Next

#17. What datatype is the object below?L=[1,23,”hello”,1]

Previous
Next

#18. What is the output of the following expression if the value of x is 34?print(“%f%x”)

Previous
Next

#19. How many keyword arguments can be passed to a function in a single function call?

Previous
Next

#20. Select all options that print hello-how-are-you

Previous
Next

#21. How do you get the current position within the file?

Previous
Next

#22. What is answer of this expression, 22%3 is?

Previous
Next

#23. The assignment of more than one function to a particular operator is _________

Previous
Next

#24. Can one block of except statements handle multiple exception?

Previous
Next

#25. What is returned by math.ceil(3,4)?

Previous
Finish