Python - Introduction To Python
Questions No: 1/50

What is the maximum possible length of an identifier for better redability? -
एक आइडेंटिफायर की अधिकतम संभव लंबाई क्या है?

Questions No: 2/50

What will the following code output? print(‘re\new’)
निम्नलिखित कोड आउटपुट क्या होगा? print(‘re\new’)

Questions No: 3/50

The data type whose representation is known are called
वह डेटा प्रकार जिसका प्रतिनिधित्व ज्ञात हो, कहलाते हैं

Questions No: 4/50

Which one of the following is not a python's predefined data type?
निम्नलिखित में से कौन सा एक पायथन का पूर्वनिर्धारित डेटा टाइप नहीं है

Questions No: 5/50

Strings in Python are enclosed within ____.
पायथन में स्ट्रिंग्स को ____ के भीतर रखा जाता है।

Questions No: 6/50

Python is an example of which type of programming language?
पायथन किस प्रकार की प्रोग्रामिंग भाषा का उदाहरण है?

Questions No: 7/50

Which of the following will run without errors?
निम्नलिखित में से कौन सी त्रुटियों के बिना चलेगा?

Questions No: 8/50

How many keywords are there in python 3.7?
पायथन 3.7 में कितने कीवर्ड होते है?

Questions No: 9/50

The ______ mode of Python gives instant result of typed statement
पायथन का ______ मोड टाइप किए गए कथन का तुरंत परिणाम देता है

Questions No: 10/50

In what language is the Python programming language written?
पायथॉन प्रोग्रामिंग भाषा किस भाषा में लिखी गई है?

Questions No: 11/50

Which of the following is incorrect regarding variables in Python?
पायथन में वेरिएबल्स के संबंध में निम्नलिखित में से कौन सा गलत है?

Questions No: 12/50

Which of the following is not a valid identifier?
निम्न में से कौन सा वैध पहचानकर्ता नहीं है?

Questions No: 13/50

Which of the following are valid escape sequences in Python ?
निम्नलिखित में से कौन से पायथन में वैध एस्केप सिक्वेन्स हैं?

Questions No: 14/50

Python uses a/an _______ to convert source code
सोर्स कोड को परिवर्तित करने के लिए पायथन _______ का उपयोग करता है

Questions No: 15/50

Is Python case sensitive when dealing with identifiers?
क्या पहचानकर्ताओं के साथ व्यवहार करते समय पायथन केस सेंसिटिव है?

Questions No: 16/50

How many keywords are there in Python 3.0 version?
Python 3.0 संस्करण में कितने कीवर्ड हैं?

Questions No: 17/50

Which of the following data types is not supported in python?
पायथन में निम्नलिखित में से कौन सा डेटा टाइप सपोर्ट नहीं करता है।

Questions No: 18/50

You do not have pay Python and you can view its source code too. it means Python is _______

Questions No: 19/50

What is the return type of function id?
फ़ंक्शन आईडी का रिटर्न प्रकार क्या है?

Questions No: 20/50

What will be the output of the following Python code

def func(a, b=5, c=10):
    print('a is', a, 'and b is', b, 'and c is', c)
func(13, 17)
func(a=2, c=4)
func(5,7,9)

(A) a is 13 and b is 15 and c is 10

     a is 2 and b is 5 and c is 4

     a is 5 and b is 7 and c is 9

(B) a is 13 and b is 17 and cis 10

     a is 2 and b is 4 and c is 4

     a is 5 and b is 9 and c is 7

(C) a is 13 and b is 17 and c is 10

      a is 2 and b is 5 and cis 4

      a is 5 and b is 7 and c is 9

(D) None of the above

Questions No: 21/50

Which can not be a variable in python
जो कि Python में वेरिएबल नहीं हो सकता

Questions No: 22/50

Raw data assigned to a variable is called as,
एक वैरिएबल को निर्दिष्ट रॉ डेटा को .....कहा जाता है

Questions No: 23/50

Which one of the following is the correct extension of the Python file ?
निम्नलिखित में से कौन सा पायथन फाइल का सही एक्सटेंशन है-

Questions No: 24/50

function returns the current position of file pointer.
फ़ंक्शन फ़ाइल पॉइंटर की वर्तमान स्थिति प्रस्तुत करता है ।

Questions No: 25/50

Which of the following words is not a keyword of python language?
निम्नलिखित में से कौन सा शब्द नहीं पायथन लैंग्वेज का कीवर्ड है?

Questions No: 26/50

The program must be able to handle unexpected situation like wrong input or no input.

Questions No: 27/50

Raw data assigned to a variable is called as
एक वेरिएबल को असाइन किए गए रॉ डेटा को कहा जाता है

Questions No: 28/50

Which data type is used for whole numbers?
पूर्ण संख्याओं के लिए किस डेटा प्रकार का उपयोग किया जाता है?

Questions No: 29/50

Python is dynamically typed. This means:
पायथन एक डायनामिक टाइप्ड भाषा है। इसका मतलब है:

Questions No: 30/50

Python Programs are typed in
Python प्रोग्राम टाइप किये जाते हैं

Questions No: 31/50

How many keywords present in the python programming language?
पायथन प्रोग्रामिंग भाषा में कितने कीवर्ड मौजूद हैं?

Questions No: 32/50

It refers to the ability of an application to run on different platforms with or without minimal changes.
यह किसी एप्लिकेशन की न्यूनतम परिवर्तनों के साथ या उसके बिना विभिन्न प्लेटफ़ॉर्म पर चलने की क्षमता को संदर्भित करता है

Questions No: 33/50

What will be the datatype of the var in the below code snippet?

var = 10
print(type(var))
var = "Hello"
print(type(var))

Questions No: 34/50

Which of these in not a core data type in python?
इनमें से कौन एक कोर डेटा प्रकार नहीं है?

Questions No: 35/50

Which is Special type of literal in Python
जो पाइथन में विशेष प्रकार का शाब्दिक है

Questions No: 36/50

______ are additional readable information to clarify the statement in python.
______ पायथन में कथन को स्पष्ट करने के लिए अतिरिक्त पठनीय जानकारी है।

Questions No: 37/50

How is a code block indicated in Python?
पायथन में कोड ब्लॉक को कैसे दर्शाया जाता है?

Questions No: 38/50

Python code can run on a variety of platforms, it means Python is a _____ language.
पायथन कोड विभिन्न प्लेटफार्मों पर चल सकता है, इसका मतलब है कि पायथन एक _____ भाषा है।

Questions No: 39/50

Which of the following is NOT a valid Python data type?
निम्नलिखित में से कौन सा एक मान्य पायथन डेटा प्रकार नहीं है?

Questions No: 40/50

Which data type stores text in Python?
पाइथन में टेक्स्ट को स्टोर करने के लिए किस डेटा टाइप का उपयोग किया जाता है?

Questions No: 41/50

Which of the following is not a keyword ?
निम्नलिखित में से कौन सा कीवर्ड नहीं है?

Questions No: 42/50

Which of the following is not a keyword in python?
निम्नलिखित में से कौन सा पायथन में एक कीवर्ड नहीं है?

Questions No: 43/50

Which of the following is not a features of Python?
निम्नलिखित में से कौन पायथन की विशेषता नहीं है?

Questions No: 44/50

PVM is often called
PVM को अक्सर कहा जाता है

Questions No: 45/50

What is can be the length of python identifier
पाइथन पहचानकर्ता की लंबाई क्या हो सकती है

Questions No: 46/50

Which of the following variable declaration is incorrect?
निम्नलिखित में से कौन सी वैरिएबल डिक्लेरेशन गलत है ?

Questions No: 47/50

Given a function that does not return any value, What value is thrown by default when executed in shell.
ऐसे फ़ंक्शन को देखते हुए जो किसी भी वैल्यू को रिटर्न नहीं करता है, शेल में एक्सक्यूटेड होने पर डिफ़ॉल्ट रूप से कौन सी वैल्यू को हटा दिया जाता है।

Questions No: 48/50

What will the following code output?

a=‘INFOMAX’ 
a=10
print(type(a))

Questions No: 49/50

Python is ________ Programming Language
पायथन एक _____ प्रोग्रामिंग है

Questions No: 50/50

In which year was the Python language developed?
पायथन भाषा का विकास किस वर्ष हुआ था?