Discover the best answers to your questions with the help of IDNLearn.com. Get step-by-step guidance for all your technical questions from our knowledgeable community members.
Answer:
b
Explanation:
It is not "import sqrt" because import is used to add a module, and "sqrt" is not a module.
It is not sqrt(16) because we need to use the math. prefix so that python recognizes that sqrt is a function from the math module.