adplus-dvertising

Welcome to the Mapping Functions and Modules MCQs Page

Dive deep into the fascinating world of Mapping Functions and Modules with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Mapping Functions and Modules, a crucial aspect of Python. In this section, you will encounter a diverse range of MCQs that cover various aspects of Mapping Functions and Modules, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within Python.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Mapping Functions and Modules. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of Python.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Mapping Functions and Modules. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Mapping Functions and Modules MCQs | Page 13 of 21

Q121.
Which of the following can be used to create a directory?
Discuss
Answer: (a).os.mkdir()
Q122.
Which of the following can be used to create a symbolic link?
Discuss
Answer: (a).os.symlink()
Q123.
What is the output shape of the code shown?
import turtle
t=turtle.Pen()
for i in range(0,4):
                  	t.forward(100)
                  	t.left(120)
Discuss
Answer: (c).triangle
Q124.
The number of lines drawn in each case, assuming that the turtle module has been imported:
Case 1:
for i in range(0,10):
                  turtle.forward(100)
                  turtle.left(90)
Case 2:
for i in range(1,10):
                  turtle.forward(100)
                  turtle.left(90)
Discuss
Answer: (a).10, 9
Q125.
The command which helps us to reset the pen (turtle):
Discuss
Answer: (d).turtle.reset()
Q126.
Fill in the blank such that the code shown below results in the formation of an inverted, equilateral triangle.
import turtle
t=turtle.Pen()
for i in range(0,3):
              	t.forward(150)
              	t.right(_____)
Discuss
Answer: (b).120
Q127.
What will be the output shape of the code shown below?
import turtle
t=turtle.Pen()
for i in range(1,4):
                      t.forward(60)
                      t.left(90)
Discuss
Answer: (d).Square
Q128.
The output of the code shown below:
import turtle
t=turtle.Pen()
t.color(0,0,1)
t.begin_fill()
t.circle(15)
t.end_fill()
Discuss
Answer: (c).A circle filled in with the colour blue
Q129.
Which of the following functions can be used to make the arrow black?
Discuss
Answer: (d).turtle.color(0,0,0)
Q130.
What is the output of the code shown?
import turtle
t=turtle.Pen()
t.color(1,1,1)
t.begin_fill()
for i in range(0,3):
              	t.forward(100)
              	t.right(120)
              t.end_fill()
Discuss
Answer: (a).Blank page

Suggested Topics

Are you eager to expand your knowledge beyond Python? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!