MCQs > IT & Programming > Python > Analyse the given Python code and answer the question that follows. import math a = math.pi/6 b = 3 c = 4 print (math.tan(a)) print ('result = ', end='') print (math.hypot(b,c)) What will be the correct output of the above Python code?

Python MCQs

Analyse the given Python code and answer the question that follows.

import math

a = math.pi/6

b = 3

c = 4

print (math.tan(a))

print ("result = ", end="")

print (math.hypot(b,c))

What will be the correct output of the above Python code?


Answer

Correct Answer:

5773502691896257

result = 5.0


Explanation:

Note: This Question is unanswered, help us to find answer for this one

Python Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Python Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it