O Level Python Paper January 2026
निम्न Python code का output क्या होगा?
What will be the output of the following Python code?
L = [None] * 10
print(len(L)) निम्न Python code का output क्या होगा?
What will be the output of the following Python code?
import math
print(math.copysign(3, -1)) क्या output होगा?
What will be the output?
def factorial(x)
if x==0:
return 1
else:
return x*factorial(x-1)
print(factorial(3)) निम्न Python code का output क्या होगा
What will be the output of the following Python code
import math
print(math.copysign(3, -1)) Python में 2^5 का output क्या होगा
What is the output of 2^5 in Python
The caret (^) is the Bitwise XOR operator. It compares the binary representations of the numbers:2 in binary is 0105 in binary is 101010 XOR 101 = 111, which is 7 in decimal.
Correct Answer: C) 7
क्या output होगा
What will be the output
def factorial(x)
if x==0:
return 1
else:
return x*factorial(x-1)
print(factorial(3)) निम्नलिखित NumPy कोड का output क्या होगा
What will be the output of the following NumPy code
import numpy as np
x = np.arange(1, 11, 2)
print(x)