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

Operators, Expressions and Python Statements

Question: 51 Report Error

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

Which of the following is not logical operator ?

A)
B)
C)
D)

Question: 52 Report Error

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

To repeat a particular task, we use __________.

A)
B)
C)
D)

Question: 53 Report Error

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

Which of the following operators has the highest precedence ?

A)
B)
C)
D)

Question: 54 Report Error

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

__________ immediately terminates a loop entirely.

A)
B)
C)
D)

Question: 55 Report Error

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

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

A)
B)
C)
D)

Question: 56 Report Error

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

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

A)
B)
C)
D)

Question: 57 Report Error

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

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

A)
B)
C)
D)

Question: 58 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: 59 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: 60 Report Error

"लूप के लिए" के अंदर की सामग्री को अलग किया जाता है:

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

A)
B)
C)
D)

Question: 61 Report Error

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

What does the assert statement do in Python?

A)
B)
C)
D)

Question: 62 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: 63 Report Error

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

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

A)
B)
C)
D)

Question: 64 Report Error

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

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

A)
B)
C)
D)

Question: 65 Report Error

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

What is the purpose of a Python module?

A)
B)
C)
D)

Question: 66 Report Error

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

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

A)
B)
C)
D)

Question: 67 Report Error

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

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

A)
B)
C)
D)

Question: 68 Report Error

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

Which is not a plot in Matplotlib ?

A)
B)
C)
D)

Question: 69 Report Error

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

How do you create an infinite loop in Python?

A)
B)
C)
D)

Question: 70 Report Error

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

Does Lambda contains return statements?

A)
B)
C)
D)

Question: 71 Report Error

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

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

A)
B)
C)
D)

Question: 72 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: 73 Report Error

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

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

A)
B)
C)
D)

Latest Updates