Operators, Expressions and Python Statements
निम्नलिखित में से कौन सा तार्किक ऑपरेटर नहीं है?
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.
"लूप के लिए" के अंदर की सामग्री को अलग किया जाता है:
The contents inside the “for loop” are separated by :
पायथन में 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)