Solved

What Is the Output of the Following Program

Question 2

Multiple Choice

What is the output of the following program?
From math import sqrt
L1 = [x**2
For x in range(10) ].pop()
L1 + = 19print(sqrt(L1) , end = " ")
L1 = [x**2 for x in reversed(range(10) ) ].pop()
L1 + = 16
Print(int(sqrt(L1) ) )


A) 10.0 4.0
B) 4.3588 4
C) 10 .0 4
D) 10.0 0

Correct Answer:

verifed

Verified

Related Questions