page-banner
Chapter-4 Operator, Expressions & Python Statement
Q61.
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा ?

What is the output of following Python code?
print(5*(2//3))
A. 3
B. 3.3
D. Error
View Answer
Q62.
................. ऑपरेटर दो स्ट्रिंग को जोड़ने के लिए प्रयोग किया जाता है

The operator used for concatenating two strings
A. +
B. //
C. *
D. =
View Answer
Q63.
एरर चेकिंग के लिए किस स्टेटमेंट का प्रयोग होता है

Statement used for error checking
A. assert
B. bug
C. loop
D. for
View Answer
Q64.
विभाजन के बाद शेष की गणना के लिए प्रयोग किया जाने वाला ऑपरेटर

The operator used to calculate remainder after division
A. //
B. /
C. %
D. *
View Answer
Q65.
..................स्टेटमेंट प्रोग्राम को बिना कोई क्रिया किये कोड के पीस से गुजरने देता है |

The __________ statement lets the program go through the piece of code without performing any action.
A. break
B. continue
C. pass
D. assert
View Answer

Create Account