Important Notice:
Jul 2023 M3-R5.1
1 / 100
Python is………. पायथन ………. है
2 / 100
What is the output of : इसका आउटपुट क्या है? 83+92%11-21
3 / 100
Which symbol is used to test condition in a flow chart? फ्लो चार्ट में स्थिति का परीक्षण करने के लिए किस प्रतीक का उपयोग किया जाता है?
4 / 100
What is a variable defined inside a function referred to as? किसी फ़ंक्शन के अंदर परिभाषित एक वेरिएबल को क्या कहा जाता है?
5 / 100
what will be the output of the following code snippet? निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा? print([i.lower() for I in “HELLO”])
6 / 100
A statement used to close the if block in Pseudo Code स्यूडो कोड में if ब्लॉक को बंद करने के लिए उपयोग किया जाने वाला एक कथन
7 / 100
Extension of python: पायथन का विस्तार:
8 / 100
What is the output of the following python code? निम्नलिखित पायथन कोड का आउटपुट क्या है? From math import * a=2.19 b=3.999999 c=-3.30 print(int(a),floor(b),ceil(c),fabs(c))
9 / 100
Which of the following is truncation division operator निम्नलिखित में से कौन ट्रंकेशन डिवीजन ऑपरेटर है
10 / 100
which is used to terminate current loop immediately? करंट लूप को तुरंत समाप्त करने के लिए किसका उपयोग किया जाता है?
11 / 100
what is the output आउटपुट क्या है print((1,2)+(3,4)
12 / 100
which of the following dictionary method is used to return the value of a specified key? निम्नलिखित में से कौन सी शब्दकोश विधि निर्दिष्ट कुंजी का मान लौटाने के लिए उपयोग की जाती है?
13 / 100
In p**y , ** denotes to p**y में, ** का अर्थ है
14 / 100
Which of the following is a sequence data type? इनमें से कौन सा sequence data type है
15 / 100
What is default parameter डिफ़ॉल्ट पैरामीटर क्या है?
16 / 100
constant in python पाइथॉन में स्थिरांक
17 / 100
Why we use random.shuffle() हम random.shuffle() का उपयोग क्यों करते हैं?
18 / 100
what is the output आउटपुट क्या है a=16, b=15 print(a%b//a)
19 / 100
What is the index of ‘a’ in “presentation” “presentation” में ‘a’ का सूचकांक क्या है?
20 / 100
Which of the following character is used to give single line comments in python? पायथन में सिंगल लाइन कमेंट देने के लिए निम्नलिखित में से किस कैरेक्टर का उपयोग किया जाता है?
21 / 100
Python 3.00020 is released in the year पायथन 3.00020 किस वर्ष जारी किया गया?
22 / 100
How to access 2 elements in a tuple: टपल में 2 तत्वों तक कैसे पहुँचें: tuple1=(1,2,3,4,5)
23 / 100
which of the following takes two arguments? निम्नलिखित में से कौन सा दो तर्क लेता है?
24 / 100
Which types of value return int() किस प्रकार का मान int() लौटाता है
25 / 100
if x is largest among all and y is minimum among all and p<q; where x,y,p,q are real integers, then यदि x सभी में सबसे बड़ा है और y सभी में सबसे छोटा है तथा p<q; जहाँ x,y,p,q वास्तविक पूर्णांक हैं, तो print(min(max(False,x,y),p,q)) gives?
26 / 100
Evaluate this expression : इस अभिव्यक्ति का मूल्यांकन करें : 2+9*(3*12-8)/10
27 / 100
Is python case sensitive when dealing with identifiers क्या पाइथन पहचानकर्ताओं के साथ काम करते समय केस सेंसिटिव है?
28 / 100
What is the symbol of start and stop of flowchart फ्लोचार्ट के प्रारंभ और विराम का प्रतीक क्या है
29 / 100
Which is invalid keyword in python पायथन में कौन सा कीवर्ड अमान्य है
30 / 100
x=10, y=3 print(divmod(x,y)) what is the output आउटपुट क्या है
31 / 100
What is the output of the following code निम्नलिखित कोड का आउटपुट क्या है y=10 x=5 x=x+y y=y-x x=x-y what is the value x
32 / 100
What is the output of following code if x=1? (LEFT shift operator) यदि x=1 है तो निम्नलिखित कोड का आउटपुट क्या होगा? (LEFT शिफ्ट ऑपरेटर) Print(x<<2)
33 / 100
What is the output of : इसका आउटपुट क्या है: print(10%3)
34 / 100
Which of the following is tuple? निम्नलिखित में से कौन टपल है?
35 / 100
what is the output आउटपुट क्या है a=5, b=6 print(a&b)
36 / 100
which of the character is used to give single line comment in python? पायथन में सिंगल लाइन कमेंट देने के लिए किस कैरेक्टर का उपयोग किया जाता है?
37 / 100
How many keywords in python पायथन में कितने कीवर्ड हैं
38 / 100
What is the output of : इसका आउटपुट क्या है? (10/2+3*5)
39 / 100
who development Numpy Numpy का विकास किसने किया?
40 / 100
What is the output of: इसका आउटपुट क्या है: print(16%151//16)
41 / 100
What is the output of following expression निम्नलिखित अभिव्यक्ति का आउटपुट क्या है? example=”hello” example.count(l)
42 / 100
What is the output of : इसका आउटपुट क्या है? 3*3**3
43 / 100
What is python? पायथन क्या है?
44 / 100
Method which is used of well-defined instructions to complete a task starting from a given initial state to end state is called is वह विधि जो किसी कार्य को किसी दिए गए प्रारंभिक अवस्था से शुरू करके अंतिम अवस्था तक पूरा करने के लिए सुपरिभाषित निर्देशों का उपयोग करती है, कहलाती है
45 / 100
What is the output of following code निम्नलिखित कोड का आउटपुट क्या है import numpy as np arr=np.linspace(1,10,6,dtype=int) print(arr)
46 / 100
what is the output of the following code निम्नलिखित कोड का आउटपुट क्या है x=11 print(x>>2)
47 / 100
which of the following is part of user documentation? निम्नलिखित में से कौन उपयोगकर्ता दस्तावेज़ का हिस्सा है?
48 / 100
what is the following option निम्नलिखित विकल्प क्या है k=(not(400>600) and (300>200) print(k)
49 / 100
Which is not similar in following options निम्नलिखित विकल्पों में कौन-सा समान नहीं है?
50 / 100
Print(5+3*2) what is the output आउटपुट क्या है
51 / 100
which module in python is used for working with regular expressions? पायथन में किस मॉड्यूल का उपयोग रेगुलर एक्सप्रेशन के साथ काम करने के लिए किया जाता है?
52 / 100
What is used to find the mean in NumPy? NumPy में mean ज्ञात करने के लिए किसका प्रयोग करते हैं
53 / 100
which is invalid keyword in python python में कौन सा कीवर्ड अमान्य है
54 / 100
what is debugging डिबगिंग क्या है
55 / 100
what is the following code निम्नलिखित कोड क्या है? txt=”Hello” x=txt.count(‘l’) print(x)
56 / 100
How to read one line from to file किसी फ़ाइल से एक लाइन कैसे पढ़ें
57 / 100
Function to read a CSV file CSV फ़ाइल पढ़ने का फ़ंक्शन
58 / 100
Min(max(False,-3,-4),2,7) का आउटपुट क्या है:
59 / 100
Which of the following is/are features of tuple? निम्नलिखित में से कौन-सी/से ट्यूपल की विशेषताएँ हैं?
60 / 100
What is the extension of python file पायथन फ़ाइल का एक्सटेंशन क्या है
61 / 100
A ……….is a connector showing the relationship between the representative shapes A ……….एक कनेक्टर है जो प्रतिनिधि आकृतियों के बीच संबंध दर्शाता है
62 / 100
Which of the following is valid arithmetic operator in python? निम्नलिखित में से कौन सा पायथन में वैध अंकगणितीय ऑपरेटर है?
63 / 100
Which is a wrong use of random() कौन सा random() का गलत प्रयोग है
64 / 100
Pictorial representation of an algorithm is called as किसी एल्गोरिथ्म के चित्रात्मक निरूपण को क्या कहा जाता है?
65 / 100
Which of the following data types is immutable निम्नलिखित में से कौन सा डेटा प्रकार अपरिवर्तनीय है
66 / 100
All keywords in Python are in पायथन में सभी कीवर्ड हैं
67 / 100
in array indexing is ऐरे में इंडेक्सिंग है
68 / 100
Which is used for import module Import मॉड्यूल के लिए किसका उपयोग किया जाता है
69 / 100
What is the length of identifier identifier की लम्बाई कितनी होती है
70 / 100
What is the output of : इसका आउटपुट क्या है? print(36//9)
71 / 100
how do you access elements of a NumPy array in python आप पायथन में NumPy ऐरे के तत्वों तक कैसे पहुँचते हैं
72 / 100
In a flowchart an input or output instruction is represented by फ्लोचार्ट में इनपुट या आउटपुट निर्देश को किसके द्वारा दर्शाया जाता है?
73 / 100
What type of data is: डेटा किस प्रकार का है: arr=[[1,2,3],[2,3,4,5]]
74 / 100
How to read two character from a file किसी फाइल से दो कैरेक्टर कैसे पढ़ें
75 / 100
What is the output of the following code निम्नलिखित कोड का आउटपुट क्या है a=18 print(a<<2)
76 / 100
Which of the following opening mode is used to only write content in file निम्नलिखित में से कौन सा ओपनिंग मोड केवल फ़ाइल में सामग्री लिखने के लिए उपयोग किया जाता है
77 / 100
What is the output of the: इसका आउटपुट क्या है: print(5*(2//3))
78 / 100
How to convert an array in list किसी ऐरे को सूची में कैसे बदलें
79 / 100
Which function is used to convert the all capital letter into small letter सभी बड़े अक्षरों को छोटे अक्षरों में बदलने के लिए किस फ़ंक्शन का उपयोग किया जाता है
80 / 100
which function is used to get the current position of the file pointer in python? पायथन में फ़ाइल पॉइंटर की वर्तमान स्थिति प्राप्त करने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
81 / 100
Print(bool(0),bool(3.14159),bool(-3),bool(1.0+1j)) what is the output आउटपुट क्या है
82 / 100
What is the output: आउटपुट क्या है: “2”==2
83 / 100
>>float(“21.5”) what is the output आउटपुट क्या है
84 / 100
what is the decimal number of 1011 1011 की दशमलव संख्या क्या है?
85 / 100
data store permanently डेटा को स्थायी रूप से स्टोर करना
86 / 100
let us consider the initial value of both M and N as 1. Following instructions are run in loop until N is less than 6: आइए हम M और N दोनों के प्रारंभिक मान को 1 मानें। निम्नलिखित निर्देश लूप में तब तक चलाए जाते हैं जब तक N 6 से कम न हो जाए: M*N and N=N+1. When loop terminates, which of the following will be value of M?
87 / 100
What is the output of following expression निम्नलिखित अभिव्यक्ति का आउटपुट क्या है? l1=[1,2,3,4,5,6] print(l1[2:5])
88 / 100
Global variable is accessed in……… ग्लोबल वेरिएबल को …… में एक्सेस किया जाता है
89 / 100
Which is used to terminate immediately a loop entirely किसका उपयोग लूप को तुरंत पूरी तरह से समाप्त करने के लिए किया जाता है
90 / 100
which is not a keyword in python python में कौन सा कीवर्ड नहीं है
91 / 100
what will be the output of the following python code? निम्नलिखित पायथन कोड का आउटपुट क्या होगा? a=10 globals()[‘a’]=25 print(a)
92 / 100
What does readlines() method return readlines() विधि क्या लौटाती है
93 / 100
which of the following is the floor division? निम्न में से कौन सा फ्लोर डिवीजन है?
94 / 100
Difference between r+ and w+ r+ और w+ के बीच अंतर
95 / 100
what is setattr() used for? setattr() का उपयोग किस लिए किया जाता है?
96 / 100
Full form of CSV CSV का पूरा नाम
97 / 100
what is the answer to this expression, print(22%3) is? प्रिंट(22%3) इस अभिव्यक्ति का उत्तर क्या है?
98 / 100
What is the output of : इसका आउटपुट क्या है: int(10011)
99 / 100
what is the output आउटपुट क्या है print(“a”+”bc”)
100 / 100
which of the following computer language is written in binary code only? निम्न में से कौन सी कंप्यूटर भाषा केवल बाइनरी कोड में लिखी जाती है?
Your score is
The average score is 61%
Restart quiz