2887+ MCQ Questions in english हिन्दी

Share:

What was Vajji mahajanapada's capital?

Which of the following kings patronised the division of Buddhism into Mahayana and Hinayana?

What will the following snippet of code produce?

a = 3
b = 1
print(a, b)
a, b = b, a
print(a, b)

What was Mahavira's age when he died?

banner ad

Which of the following sentences is used in Python's Exception Handling?

Which of the following periods do the rock paintings at Bhimbetka generally belong to?

What will the following snippet of code produce?

def func():
    global value
    value = "Local"

value = "Global"
func()
print(value)

Which of the following locations in India has the earliest evidence of man?

What will the following snippet of code produce?

def solve(a):
    a = [1, 3, 5]
  a = [2, 4, 6]
print(a)
solve(a)
print(a)

Which of the following is not a historical event in ancient Indian history from the BC era?

What will the following snippet of code produce?

def solve(a, b):
  return b if a == 0 else solve(b % a, a)
print(solve(20, 50))

banner ad

Which of the following is considered the Guptas' official law book?

Which of the following concepts is not a part of Python?

Which Gupta ruler was mentioned as Shakraditya when he founded the Nalanda University?

What will the following snippet of code produce?

count = 0
while(True):
    if count % 3 == 0:
       print(count, end = " ")
    if(count > 15):
      break;
  count += 1

Which of the following people was a contemporary of Pushyamitra Sunga?

What will the following code snippet produce?

a = [1, 2, 3, 4, 5]
sum = 0
for ele in a:
  sum += ele
print(sum)

"Revere the dharma, adore the sangha, and revere all the Buddhas." Which of the following quotes best describes this?

banner ad

What will the following snippet of code produce?

print(type(5 / 2))
print(type(5 // 2))

Which Ashokan inscription forbids the slaughter of animals?

What will the following snippet of code produce?

a = [1, 2, 3]
a = tuple(a)
a[0] = 2
print(a)

What one of the following kings is frequently referred to as "the first empire builder in Indian History"?

Which region is home to the capital of Matsya Mahajanpada, Viratnagar?

What will the following snippet of code produce?

print(2**3 + (5 + 6)**(1 + 1))

Who established the Chalukya Dynasty?

banner ad

How is a code block indicated in Python?

Which symbol identifies the idol of Tirthankara Parswanath?

What datatype will the var in the code snippet below be?

var = 10
print(type(var))
var = "Hello"
print(type(var))

×
Subscribe now

for Latest Updates

Articles, Jobs, MCQ and many more!