O Level Python Paper July 2021
निम्नलिखित (Diamond) प्रतीक दर्शाते हैं:
The following symbol(Diamond) represent :
जब किसी एल्गोरिथ्म को प्रोग्रामिंग भाषा के रूप में लिखा जाता है, तो वह बन जाता है:
When an algorithm is written in the form of a programming language, it becomes a :
निम्नलिखित में से कौन सा पायथन में कीवर्ड नहीं है?
Which of the following is not a keyword in Python ?
निम्नलिखित में से किसकी अभिव्यक्ति में सबसे अधिक प्राथमिकता है?
Which one of the following has the highest precedence in the expression ?
पायथन के बारे में निम्नलिखित में से कौन सा कथन सही है?
Which of the following is correct about Python ?
पायथन के लिए निम्नलिखित में से कौन सा पर्यावरण चर पायथन इंटरप्रेटर को बताता है कि प्रोग्राम में आयातित मॉड्यूल फ़ाइलों को कहाँ स्थित करना है?
Which of the following environment variable for Python tells the Python interpreter where to locate the module files imported into a program ?
निम्नलिखित में से कौन सा डेटा प्रकार पायथन में समर्थित नहीं है?
Which of the following data types is not supported in python ?
शब्दकोश का निम्नलिखित में से कौन सा फ़ंक्शन शब्दकोश से सभी कुंजियाँ प्राप्त करता है?
Which of the following function of dictionary gets all the keys from the dictionary ?
पायथन में आरक्षित कीवर्ड का चयन करें:
Select the reserved keyword in python :
कंप्यूटर विज्ञान में, एल्गोरिदम किसी समस्या के समाधान के लिए कंप्यूटर द्वारा उपयोग की जाने वाली एक विशेष विधि को संदर्भित करता है।
In computer science, algorithm refers to a special method usable by a computer for the solution to a problem.
पहचानकर्ताओं के साथ काम करते समय पायथन केस संवेदनशील होता है।
Python is case sensitive when dealing with identifiers.
गणितीय संक्रियाएँ एक स्ट्रिंग पर की जा सकती हैं।
Mathematical operations can be performed on a string.
जोड़ और घटाव का वरीयता स्तर समान है।
Addition and Subtraction has the same precedence level.
व्यंजक int(x) से तात्पर्य है कि चर x को पूर्णांक में परिवर्तित किया गया है।
The expression int(x) implies that the variable x is converted to integer.
values () शब्दकोश का एक फ़ंक्शन है जो शब्दकोश से सभी मान प्राप्त करता है।
values () is a function of dictionary gets all the values from the dictionary.
पायथन में नेस्टेड if-else की अनुमति है।
nested if-else are allowed in Python.
unichr(x)फ़ंक्शन पायथन में एक पूर्णांक को अष्टाधारी स्ट्रिंग में परिवर्तित करता है।
unichr(x)function convert an integer to octal string in python.
फ्रोज़नसेट(एस)फ़ंक्शन पाइथन में ट्यूपल्स के अनुक्रम को शब्दकोश में परिवर्तित करता है।
frozenset(s)function convert a sequence of tuples to dictionary in python.