41. Which of the following isn't true about main modules?
42. What is the default base used when math.log(x) is found?
43. What will be the output of the following Python code?
import turtle
t=turtle.Pen()
t.goto(300,9)
t.position()
import turtle
t=turtle.Pen()
t.goto(300,9)
t.position()44. Which of the following aren't defined in the math module?
45. What does os.name contain?
46. Which of the following functions results in an error?
47. What is the purpose of the from __future__ import ... statement in Python?
48. Which of the following cannot be returned by random.randrange(4)?
49. What is returned by math.ceil(3.4)?
50. What will be the output of the following Python code?
import turtle
t=turtle.Pen()
t.right(90)
t.forward(100)
t.heading()
import turtle
t=turtle.Pen()
t.right(90)
t.forward(100)
t.heading()Read More Section(Module in Python)
Each Section contains maximum 100 MCQs question on Module in Python. To get more questions visit other sections.
