Q. What is the output of the following program?from math import sqrtL1 = [x**2 for x in range(10)].pop()L1 + = 19print(sqrt(L1), end = " ")L1 = [x**2 for x in reversed(range(10))].pop()L1 + = 16print(int(sqrt(L1))) (Solved)
1. 10.0 4.0
2. 4.3588 4
3. 10 .0 4
4. 10.0 0
- c. 10 .0 4