Single Choice Moderate

Qকোন স্টেটমেন্ট math থেকে শুধু sqrt import করে?

ID: #26411 Class - XII: SEMESTER – III: Unit – 1: Python Programming: Section 13: Introduction to Python modules 0 views
Question Info
#26411Q ID
ModerateDifficulty
Class - XII: SEMESTER – III: Unit – 1: Python Programming: Section 13: Introduction to Python modulesTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A from math import sqrt
  • B import sqrt from math
  • C include math.sqrt
  • D using math.sqrt
Correct Answer

Explanation

সঠিক উত্তরের ব্যাখ্যা:

'from module import name' রূপ একটি নির্দিষ্ট ফাংশন import করে, যেমন from math import sqrt।

কেন অন্য বিকল্পগুলি ভুল:

  • বিকল্প B: ক্রম ভুল; Python 'from math import sqrt' ব্যবহার করে।
  • বিকল্প C: include Python সিনট্যাক্স নয়।
  • বিকল্প D: using Python সিনট্যাক্স নয়।

Share This Question

Challenge a friend or share with your study group.