🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

Operators, Expressions and Python Statements

Question: 51 Report Error

इन कथन का पालन करें...

Follow these statement...

Statement A: An existing file is opened in the write mode the previous data will be erased.
Statement B: When the existing file is opened in write mode the file object will be positioned at the end of the file.
A)
B)
C)
D)

Question: 52 Report Error

निम्नलिखित में से कौन सा कथन बाइनरी फ़ाइलों के लिए सही है?

Which of the following statement is correct for binary files?

A)
B)
C)
D)

Question: 53 Report Error

निम्नलिखित में से कौन सा कथन टेक्स्ट फ़ाइल के लिए सही नहीं है?

Which of the following statement is not correct for text file?

A) Contains the information as same as its held in memory
B) No delimiter for a line
C) read and write faster than binary files
D) Common format for general work
A)
B)
C)
D)

Question: 54 Report Error

निम्नलिखित प्रोग्राम का आउटपुट क्या है? print((2, 4) + (1, 5))

What is the output of the following statement? print((2, 4) + (1, 5))

A)
B)
C)
D)

Question: 55 Report Error

निम्नलिखित में से कौन सा लूपिंग स्टेटमेंट का उदाहरण नहीं है?

Which of the following is not an example of looping statement ?

A)
B)
C)
D)

Question: 56 Report Error

एक निश्चित संख्या में दोहराए जाने वाले ऑपरेशन ______ द्वारा किए जाते हैं।

Operations to be repeated a certain number of times are done by ______.

A)
B)
C)
D)

Question: 57 Report Error

निम्नलिखित में से कौन सा मोड बाइनरी डेटा को संदर्भित करेगा?

Which of the following mode will refer to binary data?

A)
B)
C)
D)

Question: 58 Report Error

pickling क्या है?

What is the pickling?

A)
B)
C)
D)

Question: 59 Report Error

__________ वर्तमान लूप पुनरावृत्ति को तुरंत समाप्त कर देता है।

_________ immediately terminates the current loop iteration.

A)
B)
C)
D)

Question: 60 Report Error

निम्नलिखित में से कौन सा तार्किक ऑपरेटर नहीं है?

Which of the following is not logical operator ?

A)
B)
C)
D)

Question: 61 Report Error

किसी विशेष कार्य को दोहराने के लिए, हम __________ का उपयोग करते हैं।

To repeat a particular task, we use __________.

A)
B)
C)
D)

Question: 62 Report Error

निम्नलिखित में से किस ऑपरेटर की प्राथमिकता सबसे अधिक है?

Which of the following operators has the highest precedence ?

A)
B)
C)
D)

Question: 63 Report Error

__________ तुरंत एक लूप को पूरी तरह से समाप्त कर देता है।

__________ immediately terminates a loop entirely.

A)
B)
C)
D)

Question: 64 Report Error

__________ संरचना द्वारा की गई कार्रवाई अंततः लूप को समाप्त करने का कारण बनेगी।

The action performed by a __________ structure must eventually cause the loop to terminate.

A)
B)
C)
D)

Question: 65 Report Error

निम्नलिखित में से किसकी अभिव्यक्ति में सर्वोच्च प्राथमिकता है?

Which one of the following has the highest precedence in the expression ?

A)
B)
C)
D)

Question: 66 Report Error

डू व्हाइल लूप कितनी बार लूप की गारंटी देता है?

How many times is a do while loop guaranteed to loop ?

A)
B)
C)
D)

Question: 67 Report Error

पायथन भाषा में, k को पावर l तक बढ़ाने के लिए निम्नलिखित में से कौन सा ऑपरेटर सही विकल्प है?

In python language, which of the following operators is the correct option for raising k to the power l ?

A)
B)
C)
D)

Question: 68 Report Error

_______ स्टेटमेंट का उपयोग तब किया जाता है जब किसी स्टेटमेंट को वाक्यात्मक रूप से आवश्यक होता है लेकिन आप नहीं चाहते कि कोई कोड निष्पादित हो।

A _______ statement is used when a statement is required syntactically but you do not want any code to execute.

A)
B)
C)
D)

Question: 69 Report Error

The contents inside the “for loop” are separated by :

A)
B)
C)
D)

Question: 70 Report Error

पायथन में निकटतम संलग्न लूप से बाहर निकलने के लिए कौन सा कीवर्ड उपयोग किया जाता है?

Which keyword is used to exit from the nearest enclosing loop in Python?

A)
B)
C)
D)

Question: 71 Report Error

60 & 13 अभिव्यक्ति का आउटपुट क्या है?

What is the output of the expression 60 & 13?

A)
B)
C)
D)

Question: 72 Report Error

पायथन में assert स्टेटमेंट क्या करता है?

What does the assert statement do in Python?

A)
B)
C)
D)

Question: 73 Report Error

निम्नलिखित में से कौन सा कथन अंतिम रूप से निष्पादित होगा?

Which of the following statement will execute in last ?

def s(n1) :      #Statement 1
       print(n1)   #Statement 2
n2=4  #Statement 3
s(n2)   #Statement 4
A)
B)
C)
D)

Question: 74 Report Error

एक से अधिक डेवलपर को असाइन करने के लिए संरचित प्रोग्राम को __________ में तोड़ा जा सकता है।

Structured program can be broken into __________ to assign to more than one developer.

A)
B)
C)
D)

Question: 75 Report Error

पायथन में किसी वेरिएबल को वैश्विक घोषित करने के लिए किस कीवर्ड का उपयोग किया जाता है?

Which keyword is used to declare a variable as global in Python?

A)
B)
C)
D)

Question: 76 Report Error

पायथन मॉड्यूल का उद्देश्य क्या है?

What is the purpose of a Python module?

A)
B)
C)
D)

Question: 77 Report Error

निम्नलिखित में से कौन सा पायथन में मॉड्यूल आयात करने का वैध तरीका नहीं है?

Which of the following is NOT a valid way to import a module in Python?

A)
B)
C)
D)

Question: 78 Report Error

पायथन लिपि में if __name__ == "__main__": कथन का उद्देश्य क्या है?

what is the purpose of the if __name__ == "__main__": statement in a Python script?

A)
B)
C)
D)

Question: 79 Report Error

मैटप्लोटलिब में कौन सा प्लॉट नहीं है?

Which is not a plot in Matplotlib ?

A)
B)
C)
D)

Question: 80 Report Error

आप पायथन में अनंत लूप कैसे बनाते हैं?

How do you create an infinite loop in Python?

A)
B)
C)
D)

Question: 81 Report Error

क्या लैम्ब्डा में रिटर्न स्टेटमेंट हैं?

Does Lambda contains return statements?

A)
B)
C)
D)

Question: 82 Report Error

पायथन का _____ मोड टाइप किए गए स्टेटमेंट का तुरंत परिणाम देता है।

The _____ mode of Python gives instant result of typed statement.

A)
B)
C)
D)

Question: 83 Report Error

फाइबोनैचि अनुक्रम के छठे और सातवें पद 165 और 268 हैं। फाइबोनैचि अनुक्रम के पहले दो पद क्या हैं?

The sixth and seventh term of fibonacci sequence are 165 and 268 .What are the first two terms of Fibonacci sequence?

A)
B)
C)
D)

Question: 84 Report Error

आउटपुट क्या है: print(2*3**3*4)

What is the output: print(2*3**3*4)

A)
B)
C)
D)

Question: 85 Report Error

33 == 33.0 का आउटपुट क्या है

What is output of 33 == 33.0

A)
B)
C)
D)

Question: 86 Report Error

फाइबोनैचि अनुक्रम के छठे और सातवें पद 165 और 268 हैं। फाइबोनैचि अनुक्रम के पहले दो पद क्या हैं

The sixth and seventh term of fibonacci sequence are 165 and 268 .What are the first two terms of Fibonacci sequence

A)
B)
C)
D)

Question: 87 Report Error

इनमें से कौन सा फ्लोर डिवीजन है

Which one of these is floor division

A)
B)
C)
D)

Question: 88 Report Error

आउटपुट क्या है: प्रिंट(2*3**3*4)

What is the output: print(2*3**3*4)

A)
B)
C)
D)

Question: 89 Report Error

पायथन में लूप के संबंध में निम्नलिखित में से कौन सा कथन गलत है

Which of the following is false regarding loops in Python

A)
B)
C)
D)

Question: 90 Report Error

प्रीति पायथन फंक्शन्स की विशेषताओं को समझने की कोशिश कर रही है। उसे वह विशेषता समझ नहीं आ रही है जो काम को छोटे-छोटे हिस्सों में बाँट देती है। निम्नलिखित में से उसके लिए उपयुक्त शब्द चुनिए

Preeti is trying to understand the features of python functions. She is not understanding the feature that distributes the work in small parts. Select the appropriate term for her out of the following:

A)
B)
C)
D)

Question: 91 Report Error

पायथन '/' ऑपरेटर हमेशा ऑपरेटर का परिणाम देगा

Python '/' operator will always yield the result of operator

A)
B)
C)
D)

Question: 92 Report Error

निम्न कोड का आउटपुट क्या होगा

What will be the output after the following statements

x = 5
y = 7
x *= y
A)
B)
C)
D)

Question: 93 Report Error

निम्न कोड का आउटपुट क्या होगा

What will be the output after the following statements

x = 6
y = 3
print(x / y)
A)
B)
C)
D)

Question: 94 Report Error

इस expression का output क्या होगा

What will be the output of the expression:

print(10 + 20*10 // 2**3 - 5)
A)
B)
C)
D)

Question: 95 Report Error

कई variables को एक ही value देने का सही तरीका कौन-सा है?

Which is used to initialize multiple variables with a common value

A)
B)
C)
D)

Question: 96 Report Error

IDLE शेल में, एक को छोड़कर सभी कथनों के लिए आउटपुट समान होगा। कौन सा

In IDLE shell, the output will be the same for all the following statements except one. Which one

A)
B)
C)
D)

Question: 97 Report Error

वरीयता क्रम में, निम्नलिखित कथन में कौन सा ऑपरेशन अंत में पूरा होगा

In the order of precedence, which of the operation will be completed last in the following statement

3 * 6 + 5 - 4 / 2
A)
B)
C)
D)

Question: 98 Report Error

निम्नलिखित में से कौन सा निर्णय लेने वाला कथन नहीं है

Which of following is not a decision-making statement

A)
B)
C)
D)

Question: 99 Report Error

5 किसका मूल्यांकन करता है

What does 5 evaluate to

A)
B)
C)
D)

Question: 100 Report Error

इसका आउटपुट क्या है

What is the output of

print(10 % 3)
A)
B)
C)
D)

Latest Updates