Time: 20:00

1. The order of statement execution in the form of top to bottom, is known as ..... construct.

ऊपर से नीचे के रूप में कथन निष्पादन के क्रम को ...... निर्माण के रूप में जाना जाता है।

2. The ..... construct allows to choose statements to be executed, depending upon the result of a condition.

..... निर्माण किसी शर्त के परिणाम के आधार पर, निष्पादित किए जाने वाले कथनों को चुनने की अनुमति देता है।

3. The ..... construct repeats a set of statements a specified number of times or as long as a condition is true.

..... निर्माण कथनों के एक सेट को एक निर्दिष्ट संख्या में या जब तक कोई शर्त सत्य है तब तक दोहराता है।

4. In Pyhon, which of the following will create a block in a compound statement?

पाइहोन में, निम्नलिखित में से कौन सा यौगिक कथन में एक ब्लॉक बनाएगा?

5. What signifies the end of a statement block or suite in Python?

पायथन में स्टेटमेंट ब्लॉक या सुइट के अंत का क्या अर्थ है?

6. Which of the following statement( s ) will terminate the whole loop and proceed to the statement following the loop?

निम्नलिखित में से कौन सा कथन पूरे लूप को समाप्त कर देगा और लूप के बाद कथन की ओर आगे बढ़ेगा?

7. Which of the following statement( s ) will terminate only the current pass of the loop and proceed with the next iteration of the loop?

निम्नलिखित में से कौन सा कथन केवल लूप के वर्तमान पास को समाप्त करेगा और लूप के अगले पुनरावृत्ति के साथ आगे बढ़ेगा?

8. Function range( 3 ) will yield an iterable scequence like

फ़ंक्शन रेंज (3) की तरह एक पुनरावृत्त अनुक्रम उत्पन्न होगा

2

9. Function range( 0, 5, 2 ) will yield on iterable scequence like

फ़ंक्शन रेंज (0, 5, 2) जैसे पुनरावर्तनीय अनुक्रम पर उत्पन्न होगी

10. Function range( 10, 5, -2 ) will yield an iterable scequence like

फ़ंक्शन रेंज (10, 5, -2) की तरह एक पुनरावृत्त अनुक्रम उत्पन्न होगा

11. Which of the following operators has the lowest precedence?

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

12. Which of the following data types is not supported in Python?

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

13. Which of the following functions converts a string to a float in python?

निम्नलिखित में से कौन सा फ़ंक्शन पायथन में एक स्ट्रिंग को फ्लोट में परिवर्तित करता है?

14. What is the output of the expression : 3 * 1 ** 3?

अभिव्यक्ति का आउटपुट क्या है: 3 * 1 ** 3?

15. Given a function that does not return any value, what value is shown when executed at the shell?

किसी फ़ंक्शन को देखते हुए जो कोई मान नहीं लौटाता है, शेल पर निष्पादित होने पर कौन सा मान दिखाया जाता है?

16. What is the output of the following program? print 0.1 + 0.2 == 0.3

निम्नलिखित प्रोग्राम का आउटपुट क्या है? प्रिंट 0.1 + 0.2 == 0.3

17. What will be the result of the expression 15 and 10?

व्यंजक 15 और 10 का परिणाम क्या होगा?

18. Python operator always yields the result of

पायथन ऑपरेटर हमेशा परिणाम देता है

19. Which of the following is a valid arithemetic operator in Python?

निम्नलिखित में से कौन सा पायथन में एक वैध अंकगणितीय ऑपरेटर है?

20. What will be the value of p when p = int(17/2+11.5)

p का ​​मान क्या होगा जब p = int(17/2+11.5)