Practise Questions (Python Module) (Q1-10)

Duration: 4 min

This video lesson is available to enrolled students.

Enroll to watch — DSSSB TGT Computer Science 2026 Section B

AI Summary

An AI-generated summary of this video lecture.

This video is a lecture on Python's math module, presented as a series of practice questions. The instructor begins by explaining how to import the entire math module using the 'import math' statement, which is the correct answer to the first question. He then moves to the second question, which asks how to import specific functions like sqrt and pi, and correctly identifies 'from math import sqrt, pi' as the right choice. The third question addresses accessing the value of pi after importing the module, with the correct answer being 'math.pi'. The lecture continues with questions on the output of math.floor(5.9), which is 5, and the math.pow(2,3) function, which returns 8. The instructor also covers the math.sqrt() function for square roots, the math.fabs() function for absolute values, and the math.sin() function for calculating the sine of an angle in radians. The video uses a digital whiteboard to display the questions and the instructor's handwritten annotations to guide the explanation.

Chapters

  1. 0:00 2:00 00:00-02:00

    The video starts with a slide titled 'Practice Questions - Python Module'. The instructor presents the first question: 'Which statement correctly imports the entire math module?'. The options are A. include math, B. import math, C. using math, D. from math. The instructor explains that the correct syntax is 'import math', which is the standard way to import a module in Python. He then moves to the second question: 'Which statement imports only sqrt and pi from the math module?'. The options are A. import math.sqrt, pi, B. from math import sqrt, pi, C. import sqrt, pi from math, D. include math sqrt, pi. The instructor correctly identifies that 'from math import sqrt, pi' is the proper syntax for importing specific functions from a module.

  2. 2:00 4:13 02:00-04:13

    The instructor proceeds to the third question: 'After executing import math, how do you access the value of pi?'. The options are A. pi.pi, B. math.pi, C. math->pi, D. pi.math. He explains that after importing the module with 'import math', the functions and constants are accessed using the module name as a prefix, so the correct answer is 'math.pi'. The next question is 'What is the output of math.floor(5.9)?'. The options are A. 6, B. 5, C. 5.9, D. Error. The instructor explains that math.floor() returns the largest integer less than or equal to the given number, so the output is 5. The following question is 'What is the output of math.pow(2,3)?'. The options are A. 6, B. 8, C. 9, D. 5. He explains that math.pow() raises the first number to the power of the second, so 2^3 is 8. The next question is 'Which function returns the square root of a number?'. The options are A. math.pow(), B. math.sqrt(), C. math.square(), D. math.root(). The correct answer is B. math.sqrt(). The video then shows question 8: 'Which function returns the absolute value?'. The options are A. math.abs(), B. math.fabs(), C. abs(), D. Both B and C. The instructor explains that both math.fabs() and the built-in abs() function can be used. Question 9 asks 'math.fabs(-7) returns:'. The options are A. -7, B. 7, C. 0, D. Error. The answer is B. 7. The final question is 'Which function calculates sine of an angle in radians?'. The options are A. math.sine(), B. math.sin(), C. sin(), D. math.sind(). The correct answer is B. math.sin().

The video provides a comprehensive review of the Python math module through a series of multiple-choice questions. It systematically covers the fundamental concepts of importing modules, accessing their functions and constants, and using key mathematical functions. The progression moves from basic syntax (importing the module) to specific function calls (floor, pow, sqrt, fabs, sin), reinforcing the correct usage of the module's features. The instructor's clear explanations and the use of a digital whiteboard to highlight correct answers make the content accessible for students learning Python.