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

Operators, Expressions and Python Statements

Question: 101 Report Error

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

Which of the following has the highest precedence in an expression

A)
B)
C)
D)

Question: 102 Report Error

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

Which of the following statement allows us to make a decision from the number of choices

A)
B)
C)
D)

Question: 103 Report Error

कौन सा लूप प्रवेश-नियंत्रित लूप के रूप में जाना जाता है

Which loop is known as an entry-controlled loop

A)
B)
C)
D)

Question: 104 Report Error

आप वेरिएबल a को लंबाई 1 का टपल कैसे असाइन करते हैं?

How do you assign a tuple of length 1 to the variable a?

A)
B)
C)
D)

Question: 105
Verified by Expert

Python में loops के बारे में निम्न में से कौन-सा कथन सही है?

Which of the following statements is true about loops in Python?

A)
B)
C)
D)
Explanation
Python does not include a built-in do...while loop like C++ or Java.

Correct Answer: B) Python does not have a do…while loop, but we can create similar behaviour that runs at least once


Question: 106
Verified by Expert

Python में _______ ऑपरेटर दो operands पर और ___________ ऑपरेटर एक operand पर काम करता है

________Operator works on two operands, while a _______ operator works on one operand in Python

A)
B)
C)
D)

Question: 107
Verified by Expert

कौन सा लूप exit-controlled loop के रूप में जाना जाता है

Which loop is known as an exit-controlled loop

A)
B)
C)
D)

Question: 108
Verified by Expert

Python में कुल कितने प्रकार के operators होते हैं?

How many types of operators does Python have?

A)
B)
C)
D)
Explanation
According to the official Python documentation, operators are not counted in a fixed numeric list like 7, 8, or 9. Instead, they are grouped into categories. From Python docs, operators fall into categories such as: Arithmetic, Comparison (Relational), Logical, Bitwise, Assignment, Membership, Identity. That makes 7 main types of operators commonly accepted in Python.

Correct Answer: A) 7


Question: 109
Verified by Expert

Python में compound assignment operator का उदाहरण कौन-सा है

Which is an example of a compound assignment operator in Python

A)
B)
C)
D)

Latest Updates