Operators, Expressions and Python Statements
निम्नलिखित में से किसकी अभिव्यक्ति में सर्वोच्च प्राथमिकता है
Which of the following has the highest precedence in an expression
निम्नलिखित में से कौन सा कथन हमें विकल्पों की संख्या में से निर्णय लेने की अनुमति देता है
Which of the following statement allows us to make a decision from the number of choices
कौन सा लूप प्रवेश-नियंत्रित लूप के रूप में जाना जाता है
Which loop is known as an entry-controlled loop
आप वेरिएबल a को लंबाई 1 का टपल कैसे असाइन करते हैं?
How do you assign a tuple of length 1 to the variable a?
Python में loops के बारे में निम्न में से कौन-सा कथन सही है?
Which of the following statements is true about loops in Python?
Correct Answer: B) Python does not have a do…while loop, but we can create similar behaviour that runs at least once
Python में _______ ऑपरेटर दो operands पर और ___________ ऑपरेटर एक operand पर काम करता है
________Operator works on two operands, while a _______ operator works on one operand in Python
कौन सा लूप exit-controlled loop के रूप में जाना जाता है
Which loop is known as an exit-controlled loop
Python में कुल कितने प्रकार के operators होते हैं?
How many types of operators does Python have?
Correct Answer: A) 7
Python में compound assignment operator का उदाहरण कौन-सा है
Which is an example of a compound assignment operator in Python