Operators, Expressions and Python Statements
इन कथन का पालन करें...
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. निम्नलिखित में से कौन सा कथन बाइनरी फ़ाइलों के लिए सही है?
Which of the following statement is correct for binary files?
निम्नलिखित में से कौन सा कथन टेक्स्ट फ़ाइल के लिए सही नहीं है?
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 निम्नलिखित प्रोग्राम का आउटपुट क्या है? print((2, 4) + (1, 5))
What is the output of the following statement? print((2, 4) + (1, 5))
निम्नलिखित में से कौन सा लूपिंग स्टेटमेंट का उदाहरण नहीं है?
Which of the following is not an example of looping statement ?
एक निश्चित संख्या में दोहराए जाने वाले ऑपरेशन ______ द्वारा किए जाते हैं।
Operations to be repeated a certain number of times are done by ______.
निम्नलिखित में से कौन सा मोड बाइनरी डेटा को संदर्भित करेगा?
Which of the following mode will refer to binary data?
__________ वर्तमान लूप पुनरावृत्ति को तुरंत समाप्त कर देता है।
_________ immediately terminates the current loop iteration.
निम्नलिखित में से कौन सा तार्किक ऑपरेटर नहीं है?
Which of the following is not logical operator ?
किसी विशेष कार्य को दोहराने के लिए, हम __________ का उपयोग करते हैं।
To repeat a particular task, we use __________.
निम्नलिखित में से किस ऑपरेटर की प्राथमिकता सबसे अधिक है?
Which of the following operators has the highest precedence ?
__________ तुरंत एक लूप को पूरी तरह से समाप्त कर देता है।
__________ immediately terminates a loop entirely.
__________ संरचना द्वारा की गई कार्रवाई अंततः लूप को समाप्त करने का कारण बनेगी।
The action performed by a __________ structure must eventually cause the loop to terminate.
निम्नलिखित में से किसकी अभिव्यक्ति में सर्वोच्च प्राथमिकता है?
Which one of the following has the highest precedence in the expression ?
डू व्हाइल लूप कितनी बार लूप की गारंटी देता है?
How many times is a do while loop guaranteed to loop ?
पायथन भाषा में, k को पावर l तक बढ़ाने के लिए निम्नलिखित में से कौन सा ऑपरेटर सही विकल्प है?
In python language, which of the following operators is the correct option for raising k to the power l ?
_______ स्टेटमेंट का उपयोग तब किया जाता है जब किसी स्टेटमेंट को वाक्यात्मक रूप से आवश्यक होता है लेकिन आप नहीं चाहते कि कोई कोड निष्पादित हो।
A _______ statement is used when a statement is required syntactically but you do not want any code to execute.
पायथन में निकटतम संलग्न लूप से बाहर निकलने के लिए कौन सा कीवर्ड उपयोग किया जाता है?
Which keyword is used to exit from the nearest enclosing loop in Python?
60 & 13 अभिव्यक्ति का आउटपुट क्या है?
What is the output of the expression 60 & 13?
पायथन में assert स्टेटमेंट क्या करता है?
What does the assert statement do in Python?
निम्नलिखित में से कौन सा कथन अंतिम रूप से निष्पादित होगा?
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 एक से अधिक डेवलपर को असाइन करने के लिए संरचित प्रोग्राम को __________ में तोड़ा जा सकता है।
Structured program can be broken into __________ to assign to more than one developer.
पायथन में किसी वेरिएबल को वैश्विक घोषित करने के लिए किस कीवर्ड का उपयोग किया जाता है?
Which keyword is used to declare a variable as global in Python?
पायथन मॉड्यूल का उद्देश्य क्या है?
What is the purpose of a Python module?
निम्नलिखित में से कौन सा पायथन में मॉड्यूल आयात करने का वैध तरीका नहीं है?
Which of the following is NOT a valid way to import a module in Python?
पायथन लिपि में if __name__ == "__main__": कथन का उद्देश्य क्या है?
what is the purpose of the if __name__ == "__main__": statement in a Python script?
मैटप्लोटलिब में कौन सा प्लॉट नहीं है?
Which is not a plot in Matplotlib ?
आप पायथन में अनंत लूप कैसे बनाते हैं?
How do you create an infinite loop in Python?
क्या लैम्ब्डा में रिटर्न स्टेटमेंट हैं?
Does Lambda contains return statements?
पायथन का _____ मोड टाइप किए गए स्टेटमेंट का तुरंत परिणाम देता है।
The _____ mode of Python gives instant result of typed statement.
फाइबोनैचि अनुक्रम के छठे और सातवें पद 165 और 268 हैं। फाइबोनैचि अनुक्रम के पहले दो पद क्या हैं?
The sixth and seventh term of fibonacci sequence are 165 and 268 .What are the first two terms of Fibonacci sequence?
आउटपुट क्या है: print(2*3**3*4)
What is the output: print(2*3**3*4)
फाइबोनैचि अनुक्रम के छठे और सातवें पद 165 और 268 हैं। फाइबोनैचि अनुक्रम के पहले दो पद क्या हैं
The sixth and seventh term of fibonacci sequence are 165 and 268 .What are the first two terms of Fibonacci sequence
इनमें से कौन सा फ्लोर डिवीजन है
Which one of these is floor division
आउटपुट क्या है: प्रिंट(2*3**3*4)
What is the output: print(2*3**3*4)
पायथन में लूप के संबंध में निम्नलिखित में से कौन सा कथन गलत है
Which of the following is false regarding loops in Python
प्रीति पायथन फंक्शन्स की विशेषताओं को समझने की कोशिश कर रही है। उसे वह विशेषता समझ नहीं आ रही है जो काम को छोटे-छोटे हिस्सों में बाँट देती है। निम्नलिखित में से उसके लिए उपयुक्त शब्द चुनिए
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:
पायथन '/' ऑपरेटर हमेशा ऑपरेटर का परिणाम देगा
Python '/' operator will always yield the result of operator
निम्न कोड का आउटपुट क्या होगा
What will be the output after the following statements
x = 5
y = 7
x *= y निम्न कोड का आउटपुट क्या होगा
What will be the output after the following statements
x = 6
y = 3
print(x / y) इस expression का output क्या होगा
What will be the output of the expression:
print(10 + 20*10 // 2**3 - 5) कई variables को एक ही value देने का सही तरीका कौन-सा है?
Which is used to initialize multiple variables with a common value
IDLE शेल में, एक को छोड़कर सभी कथनों के लिए आउटपुट समान होगा। कौन सा
In IDLE shell, the output will be the same for all the following statements except one. Which one
वरीयता क्रम में, निम्नलिखित कथन में कौन सा ऑपरेशन अंत में पूरा होगा
In the order of precedence, which of the operation will be completed last in the following statement
3 * 6 + 5 - 4 / 2 निम्नलिखित में से कौन सा निर्णय लेने वाला कथन नहीं है
Which of following is not a decision-making statement