Jul 2022 (Set 2) M3-R5

1 / 100

What will be output for the following code ?
निम्नलिखित कोड का आउटपुट क्या होगा?
import numpy as np
a = np.array([[1,2,3],[0,1,4],[11,22,33]])
print (a.size)

2 / 100

What will be the output of the following ?
निम्नलिखित का आउटपुट क्या होगा?
import numpy as np
print(np.maximum([2, 3, 4], [1, 5, 2]))

3 / 100

Which of the following is not a keyword ?
निम्नलिखित में से कौन सा कीवर्ड नहीं है?

4 / 100

The syntax of seek() is: file_object.seek(offset [, reference_point])
What does the reference_point indicate?
Reference_point क्या दर्शाता है?

5 / 100

Which function returns the strings ?
कौन सा फ़ंक्शन स्ट्रिंग्स लौटाता है?

6 / 100

Which of the following is an invalid mode ?
निम्नलिखित में से कौन सा अमान्य मोड है?

7 / 100

In which of the following data type, duplicate items are not allowed ?
निम्नलिखित में से किस डेटा प्रकार में डुप्लिकेट आइटम की अनुमति नहीं है?

8 / 100

How is a function declared in Python ?
Python में किसी फ़ंक्शन को कैसे घोषित किया जाता है?

9 / 100

If we open a file in write mode and file does not exists, which of the error will generate ?
यदि हम किसी फ़ाइल को राइट मोड में खोलते हैं और फ़ाइल मौजूद नहीं है, तो कौन सी त्रुटि उत्पन्न होगी?

10 / 100

Which one is not the attribute of a file?
इनमें से कौन सी विशेषता फ़ाइल की नहीं है?

11 / 100

Which is the function to read the remaining lines of the file from a file object infile ?
फ़ाइल ऑब्जेक्ट infile से फ़ाइल की शेष पंक्तियों को पढ़ने के लिए कौन सा फ़ंक्शन है?

12 / 100

Which part of the memory does the system store the parameter and local variables of a function call ?
सिस्टम मेमोरी के किस भाग में फ़ंक्शन कॉल के पैरामीटर और स्थानीय वेरिएबल्स को संग्रहीत करता है?

13 / 100

Which of the following is the basic I/O connections in file ?
निम्नलिखित में से कौन सा फ़ाइल में मूल I/O कनेक्शन है?

14 / 100

What will be the output of the following expression ?
निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा?
print (7//2)
print (-7//2)

15 / 100

What is the output of the following code?
निम्नलिखित कोड का आउटपुट क्या है?
dict={"Joey":1,"Rachel":2}
dict.update({"Phoebe":2})
print(dict)

16 / 100

Assume q= [3, 4, 5, 20, 5, 25, 1, 3], then what will be the items of q list after q.pop(1) ?
मान लें q= [3, 4, 5, 20, 5, 25, 1, 3], तो q.pop(1) के बाद q सूची के आइटम क्या होंगे?

17 / 100

Suppose a list with name arr, contains 5 elements. You can get the 2nd element from the list using :
मान लीजिए कि arr नाम वाली सूची में 5 तत्व हैं। आप सूची से दूसरा तत्व इस प्रकार प्राप्त कर सकते हैं:

18 / 100

Flowchart and algorithms are used for __________.
फ्लोचार्ट और एल्गोरिदम का उपयोग __________ के लिए किया जाता है।

19 / 100

How many arguments a Python program can accept from the command line ?
एक पायथन प्रोग्राम कमांड लाइन से कितने तर्क स्वीकार कर सकता है?

20 / 100

Which function is used to read all the characters?
सभी अक्षरों को पढ़ने के लिए किस फ़ंक्शन का उपयोग किया जाता है?

21 / 100

Raw data assigned to a variable is called as __________.
किसी वेरिएबल को सौंपे गए कच्चे डेटा को __________ कहा जाता है।

22 / 100

Which one of the following is a mutable data type ?
निम्नलिखित में से कौन सा एक परिवर्तनशील डेटा प्रकार है?

23 / 100

What will be the output of the following pseudocode ?
निम्नलिखित स्यूडोकोड का आउटपुट क्या होगा?
Integer a, b
Set a = 9, b = 5
a = a mod (a - 3)
b = b mod (b – 3)
Print a + b

24 / 100

What is the maximum possible length of an identifier ?
किसी आइडेंटिफायर की अधिकतम संभव लंबाई क्या है?

25 / 100

Testing is known as :
परीक्षण को इस नाम से जाना जाता है:

26 / 100

What will be the output of the following expression ?
निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा?
a = 2
b = 8
print(a | b)
print(a >> 1)

27 / 100

What is the output of >>>float(‟12.6‟)
>>>float(‟12.6‟) का आउटपुट क्या है?

28 / 100

What is the output of below program ?
नीचे दिए गए प्रोग्राम का आउटपुट क्या है?
def maximum(x, y):
if x > y:
return x
elif x == y:
return 'The numbers are equal'
else:
return y
print(maximum(2, 3))

29 / 100

What will be the output of the following ?
निम्नलिखित का आउटपुट क्या होगा?
import numpy as np
a = np.array([[1,2,3,4], [5,6,7,8], [9,10,11,12]])
print(a[2,2])

30 / 100

What is the output of the following code ?
निम्नलिखित कोड का आउटपुट क्या है?
a = set('dcma')
b = set('mlpc')
print(a^b)

31 / 100

What is the return type of following function ?
निम्नलिखित फ़ंक्शन का रिटर्न प्रकार क्या है?
def func1():
return “mnp”,22

32 / 100

What is the output of the following code ?
निम्नलिखित कोड का आउटपुट क्या है?
x = 50
def func (x) :
x = 2
func (x)
print ('x is now', x)

33 / 100

Which of the following is not a valid identifier?
निम्नलिखित में से कौन सा वैध पहचानकर्ता नहीं है?

34 / 100

What is the output of the following statement ?
निम्नलिखित कथन का आउटपुट क्या है?
print ((2, 4) + (1, 5))

35 / 100

A function used for writing data in the binary format :
बाइनरी फॉर्मेट में डेटा लिखने के लिए इस्तेमाल किया जाने वाला एक फ़ंक्शन:

36 / 100

What is the output of the following ?
निम्नलिखित का आउटपुट क्या है?
print(int())

37 / 100

The process of finding errors in code is called as __________.
कोड में त्रुटियां ढूंढने की प्रक्रिया को __________ कहा जाता है।

38 / 100

lstrip() method is used for :
lstrip() विधि का उपयोग इसके लिए किया जाता है:

39 / 100

How can we create an empty list in Python ?
हम Python में एक खाली सूची कैसे बना सकते हैं?

40 / 100

What is the symbol used to represent start and stop of a flowchart ?
फ़्लोचार्ट की शुरुआत और समाप्ति को दर्शाने के लिए किस प्रतीक का उपयोग किया जाता है?

41 / 100

What will be the output of the following ?
निम्नलिखित का आउटपुट क्या होगा?
import sys
sys.stdout.write('Welcome\n')
sys.stdout.write('All\n')

42 / 100

NumPY stands for?
NumPY का पूर्ण रूप क्या है?

43 / 100

What will be the output of the following code ?
निम्नलिखित कोड का आउटपुट क्या होगा?
f=open("demo.txt","r")
print(f.tell())

44 / 100

A detailed flowchart is known as :
एक विस्तृत फ़्लोचार्ट को इस रूप में जाना जाता है:

45 / 100

Function defined to achieve some task as per the programmer’s requirement is called a __________.
प्रोग्रामर की आवश्यकता के अनुसार कुछ कार्य को प्राप्त करने के लिए परिभाषित फ़ंक्शन को __________ कहा जाता है।

46 / 100

What will be the output of the following?
निम्नलिखित का आउटपुट क्या होगा?
print((range(4)))

47 / 100

What is the output ?
आउटपुट क्या है?
def calc(x):
r=2*x**2
return r
print(calc(5))

48 / 100

What is the output of the following code ?
निम्नलिखित कोड का आउटपुट क्या है?
def add(a, b):
return a+5, b+5
result = add(3, 2)
print(result)

49 / 100

What will be the output after the following statements?
निम्नलिखित कथनों के बाद क्या आउटपुट होगा?
for i in range(1,6):
print(i, end='')
if i == 3:
break

50 / 100

Which of the function takes two arguments ?
इनमें से कौन सा फ़ंक्शन दो तर्क लेता है?

51 / 100

Which of the following language is understood by computer ?
निम्नलिखित में से कौन सी भाषा कंप्यूटर द्वारा समझी जाती है?

52 / 100

The way for solving a problem step by step is known as __________.
किसी समस्या को चरण दर चरण हल करने के तरीके को __________ कहा जाता है।

53 / 100

What will be the output after the following statements?
निम्नलिखित कथनों के बाद आउटपुट क्या होगा?
x = 2
if x < 5:
print(x)
else:
pass

54 / 100

What will be the output of the following code ?
निम्नलिखित कोड का आउटपुट क्या होगा?
f=open("demo.txt","w+")
f.write("Welcome to Python")
f.seek(5)
a=f.read(5)
print(a)

55 / 100

The syntax used to rename a file :
फ़ाइल का नाम बदलने के लिए उपयोग किया जाने वाला सिंटैक्स:

56 / 100

What is the output of the following code ?
निम्नलिखित कोड का आउटपुट क्या है?
ms = ('A', 'D', 'H', 'U', 'N', 'I', 'C')
print(ms[1:4])

57 / 100

Which of the following variable declaration is incorrect?
निम्नलिखित में से कौन सा वेरिएबल घोषणा गलत है?

58 / 100

What will be the output of the following ?
निम्नलिखित का आउटपुट क्या होगा?
import numpy as np
a = np.array( [2, 3, 4, 5] )
b = np.arange(4)
print(a+b)

59 / 100

What will following code segment print ?
निम्नलिखित कोड सेगमेंट क्या प्रिंट करेगा?
a = True
b = False
c = False
if not a or b:
print(1)
elif not a or not b and c:
print (2)
elif not a or b or not b and a:
print (3)
else:
print (4)

60 / 100

What will be the output of the following pseudo-code ?
निम्नलिखित pseudo कोड का आउटपुट क्या होगा?
Integer a
Set a = 4
do
print a + 2
a = a- 1
while (a not equals 0)
end while

61 / 100

What does the following code print ?
निम्नलिखित कोड क्या प्रिंट करता है?
if 2 + 5 == 8:
print("TRUE")
else:
print("FALSE")
print("TRUE")

62 / 100

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
from math import pow
print(math.pow(2,3))

63 / 100

What will be the output of the following ?
निम्नलिखित का आउटपुट क्या होगा?
def iq(a,b):
if(a==0):
return b
else:
return iq(a-1,a+b)
print(iq(3,6))

64 / 100

A computer programme that manages and controls a computer's activity :
एक कंप्यूटर प्रोग्राम जो कंप्यूटर की गतिविधि का प्रबंधन और नियंत्रण करता है:

65 / 100

What is the output of the following code ?
निम्नलिखित कोड का परिणाम क्या है ?
import numpy as np
y = np.array([[11, 12, 13, 14], [32, 33, 34, 35]])
print(y.ndim)

66 / 100

What are the three different types of algorithm constructions ?
एल्गोरिदम निर्माण के तीन अलग-अलग प्रकार क्या हैं?

67 / 100

Which of the following symbol is used for input and output operations in a flow chart ?
फ्लो चार्ट में इनपुट और आउटपुट ऑपरेशन के लिए निम्नलिखित में से कौन सा प्रतीक प्रयोग किया जाता है?

68 / 100

What will be the output after the following statements?
निम्नलिखित कथनों के बाद आउटपुट क्या होगा?
a = 0
b = 3
while a + b < 8:
a += 1
print(a, end='')

69 / 100

Operations to be repeated a certain number of times are done by __________.
एक निश्चित संख्या में दोहराए जाने वाले ऑपरेशन __________ द्वारा किए जाते हैं।

70 / 100

What is the output of the following code?
निम्नलिखित कोड का आउटपुट क्या है?
import numpy as np
a = np.array([1,2,3,5,8])
b = np.array([0,1,5,4,2])
c = a + b
c = c*a
print (c[2])

71 / 100

Which of the following executes the programming code line by line?
निम्नलिखित में से कौन प्रोग्रामिंग कोड को लाइन दर लाइन निष्पादित करता है?

72 / 100

Which of the following is false about “from …. import ……” form of import?
आयात के “से …. आयात ……” रूप के बारे में निम्नलिखित में से कौन सा गलत है?

73 / 100

What is the output of the following code ?
निम्नलिखित कोड का आउटपुट क्या है?
def disp(*arg):
for i in arg:
print(i)
disp(name="Rajat", age="20")

74 / 100

A Python module is a file with the __________ file extension that contains valid Python code.
पायथन मॉड्यूल __________ फ़ाइल एक्सटेंशन वाली एक फ़ाइल है जिसमें वैध पायथन कोड होता है।

75 / 100

What value does the following expression evaluate to ?
निम्नलिखित अभिव्यक्ति का मान क्या है?
print(5 + 8 * ((3* 5)-9) /10)

76 / 100

What will be the output of the following pseudocode, where ʌ represent XOR operation ?
निम्नलिखित स्यूडोकोड का आउटपुट क्या होगा, जहां ʌ XOR ऑपरेशन को दर्शाता है?
Integer a, b, c
Set b = 4, a = 3
c = a ^ b
Print c

77 / 100

An algorithm that calls itself directly or indirectly is called as __________.
एक एल्गोरिदम जो स्वयं को प्रत्यक्ष या अप्रत्यक्ष रूप से कॉल करता है उसे __________ कहा जाता है।

78 / 100

Which of the following is not a correct mode to open a file?
किसी फ़ाइल को खोलने के लिए निम्नलिखित में से कौन सा सही तरीका नहीं है?

79 / 100

What will be the output of the following?
निम्नलिखित का आउटपुट क्या होगा?
import numpy as np
a = np.array([1,5,4,7,8])
a = a + 1
print(a[1])

80 / 100

In a flow chart, which of the following is used to test the condition ?
फ्लो चार्ट में, निम्नलिखित में से किसका उपयोग स्थिति का परीक्षण करने के लिए किया जाता है?

81 / 100

Which module is to be imported for using randint( ) function ?
randint() फ़ंक्शन का उपयोग करने के लिए कौन सा मॉड्यूल आयात किया जाना है?

82 / 100

__________ immediately terminates the current loop iteration.
__________ तुरंत वर्तमान लूप पुनरावृत्ति को समाप्त कर देता है।

83 / 100

Which symbol is used to write single line comment ?
सिंगल लाइन कमेंट लिखने के लिए किस चिन्ह का प्रयोग किया जाता है?

84 / 100

What is the output of below program ?
नीचे दिए गए प्रोग्राम का आउटपुट क्या है?
def say(message, times = 1):
print(message * times)
say('Hello')
say('World', 5)

85 / 100

What will be the output of the following Python code ?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
def printMax(a, b):
if a > b:
print(a, 'is maximum')
elif a == b:
print(a, 'is equal to', b)
else:
print(b, 'is maximum')
printMax(3, 4)

86 / 100

A process is expressed in a flowchart by __________.
एक प्रक्रिया को फ्लोचार्ट में __________ द्वारा व्यक्त किया जाता है।

87 / 100

What will be the output of the following Python program ?
निम्नलिखित पायथन प्रोग्राम का आउटपुट क्या होगा?
def addItem(listParam):
listParam += [1]
mylist = [1, 2, 3, 4]
addItem(mylist)
print(len(mylist))

88 / 100

How many numbers will be printed by the following code ?
निम्नलिखित कोड से कितने नंबर प्रिंट होंगे?
def fun(a,b):
for x in range(a,b+1):
if x%3==0:
print(x, end=" ")
fun(100,120)

89 / 100

The process of drawing a flowchart for an algorithm is called __________.
किसी एल्गोरिथम के लिए फ्लोचार्ट बनाने की प्रक्रिया को __________ कहा जाता है।

90 / 100

What is the output of >>>‟2‟+‟3‟
>>>‟2‟+‟3‟ का आउटपुट क्या है?

91 / 100

What is the purpose of zeros() function used in Numpy array ?
Numpy array में प्रयुक्त zeros() फ़ंक्शन का उद्देश्य क्या है?

92 / 100

What is the output of the following code ?
निम्नलिखित कोड का आउटपुट क्या है?
import numpy as np
a = np.array([[1,2,3]])
print(a.shape)

93 / 100

What value does the following expression evaluate to ?
निम्नलिखित अभिव्यक्ति का मान क्या है?
x = 5
while x < 10:
print(x, end='')

94 / 100

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
from math import *
floor(3.7)

95 / 100

Algorithms cannot be represented by __________.
एल्गोरिदम को __________ द्वारा प्रदर्शित नहीं किया जा सकता।

96 / 100

What will be the output of the following expression ?
निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा?
x = 4
print(x<<2)

97 / 100

What does the following code print?
निम्नलिखित कोड क्या प्रिंट करता है?
x = 'mohan'
for i in range(len(x)):
x[i].upper()
print (x)

98 / 100

What is the output of the following code ?
निम्नलिखित कोड का परिणाम क्या है ?
def fun(a, b=6):
a=a+b
print(a)
fun(5, 4)

99 / 100

What is the output of the following code ?
निम्नलिखित कोड का परिणाम क्या है ?
a = {1: "A", 2: "B", 3: "C"}
b = {4: "D", 5: "E"}
a.update(b)
print(a)

100 / 100

Which statement is correct to import all modules from the package ?
पैकेज से सभी मॉड्यूल आयात करने के लिए कौन सा कथन सही है?

Your score is

The average score is 0%

0%