Learn Python Question Answer Hindi PDF
Home
Online Test Series
PYTHON MCQ
(Python Programming Basic Questions with Answer in Hindi )
for CCC, CCA, DCA, PGDCA, ITI COPA NCVT Mock Test Series for Various Govt Jobs and All Competitive Exams
100+ Python Programming Question with Answers in Hindi consists of Important Question Answers that are very useful for all the computer courses and various competitive examinations practice. These questions covers the proramming in Python topics.
Python Programming Question Answers | पाइथान प्रोग्रामिंग कंप्यूटर प्रश्न और उत्तर
पाइथान प्रोग्रामिंग Questions Answer / पाइथान प्रोग्रामिंग ऑबजेक्टिव टेस्ट / पाइथान प्रोग्रामिंग MCQs के अंतर्गत आप पाइथान प्रोग्रामिंग से सम्बन्धित कंप्यूटर ऑब्जेक्टिव क्वेश्चन / मल्टीपल चॉइस क्वेश्चन (MCQ) की ऑनलाइन प्रैक्टिस हिंदी एवं अंग्रेजी में कर सकते हैं।
Que : 1 - Who developed Python Programming Language? पायथन प्रोग्रामिंग भाषा किसने विकसित की? A- Wick van Rossum B- Rasmus Lerdorf C- Guido van Rossum D- Niene Stom Ans : C - Guido van Rossum
Que : 2 - Is Python code compiled or interpreted? क्या पायथन कोड कंपाइल्ड या इंटरप्रेटेड है? A- Python code is both compiled and interpreted B- Python code is neither compiled nor interpreted C- Python code is only compiled D- Python code is only interpreted Ans : A - Python code is both compiled and interpreted
Que : 3 - What will be the value of the following Python expression? 4+3%5 "4+3%5" पायथन एक्सप्रेशन का मूल्य क्या होगा? A- 7 B- 2 C- 4 D- 1
Que : 4 - Which of the following is the truncation division operator in Python? निम्नलिखित में से कौन सा पायथन में ट्रंकेशन डिवीजन ऑपरेटर है? A- | B- // C- / D- %
Que : 5 - Which of the following is not a core data type in Python programming? पायथन प्रोग्रामिंग में कौन एक कोर डेटा टाइप नहीं है? A- Tuples B- Lists C- Class D- Dictionary
Que : 6 - What is the order of namespaces in which Python looks for an identifier? पायथन पाइथन में नेम स्पेस का क्या ऑर्डर हैं जो की आइडेंटिफायर की तरह दिखता है? A- Python first searches the built-in namespace, then the global namespace and finally the local namespace B- Python first searches the built-in namespace, then the local namespace and finally the global namespace C- Python first searches the local namespace, then the global namespace and finally the built- in namespace D- Python first searches the global namespace, then the local namespace and finally the built- in namespace Ans : C - Python first searches the local namespace, then the global namespace and finally the built- in namespace
Que : 7 - Which one of the following is not a keyword in Python language? निम्नलिखित में से कौन सा पायथन में कीवर्ड नहीं है? A- pass B- eval C- assert D- nonlocal
Que : 8 - What arithmetic operators cannot be used with strings in Python? पायथन में स्ट्रिंग्स के साथ कौन से अंकगणितीय ऑपरेटरों का उपयोग नहीं किया जा सकता है? A- * B- – C- + D- All of the above
Que : 9 - To add a new element to a list we use which Python command? एक सूची में एक नया तत्व जोड़ने के लिए किस पायथन कमांड का उपयोग करते हैं? A- list1.addEnd(5) B- list1.addLast(5) C- list1.append(5) D- list1.add(5) Ans : C - list1.append(5)
Que : 10 - What is the maximum possible length of an identifier in Python? पायथन में एक आइडेंटिफायर की अधिकतम लंबाई क्या है? A- 79 characters B- 31 characters C- 63 characters D- None of the above Ans : D - None of the above
Que : 11 - Which of the following is a feature of Python DocString? निम्नलिखित में से कौन सा पायथन डॉकस्ट्रिंग की एक विशेषता है? A- In Python all functions should have a docstring B- Docstrings can be accessed by the doc attribute on objects C- It provides a convenient way of associating documentation with Python modules, functions, classes, and methods D- All of the above Ans : D - All of the above
Que : 12 - In which year was the Python 3.0 version developed? किस वर्ष में पायथन 3.0 संस्करण विकसित हुआ था? A- 2008 B- 2000 C- 2010 D- 2005
Que : 13 - What is the method inside the class in python language? पायथन भाषा में क्लास के अंदर क्या मैथड है? A- Object B- Function C- Attribute D- Argument
Que : 14 - Which one of the following has the highest precedence in the expression? निम्नलिखित में से कौन सा अभिव्यक्ति में उच्चतम है? A- Division B- Subtraction C- Power D- Parenthesis
Que : 15 - What will be the output after the following statements? निम्नलिखित कथनों के बाद आउटपुट क्या होगा? x =5, y = 4, print(x % y) A- 0 B- 20 C- 1 D- 11
Que : 16 - What is the data type of x after the following statement? निम्नलिखित कथन के बाद X का डेटा प्रकार क्या है? “x = [‘Today’, ‘Tomorrow’, ‘Yesterday’]” A- List B- Dictionary C- Tuple D- String
Que : 17 - Which of the following cannot be a variable? निम्नलिखित में से कौन एक वेरिएबल नहीं हो सकता है? A- init B- in C- it D- on
Que : 18 - A function in Python begins with which keyword? पायथन में एक फ़ंक्शन किस कीवर्ड से शुरू होता है? A- void B- return C- def D- int
Que : 19 - Which of the following declarations is incorrect? निम्नलिखित में से कौन सा डिक्लेरेशन गलत है? A- _x = 2 B- x = 3 C- xyz = 5 D- None of the above Ans : D - None of the above
Que : 20 - Which of the following statements assigns the value 25 to the variable x in Python: निम्नलिखित में से कौन सा कथन पायथन में वैरिएबल X को मान 25 प्रदान करता है: A- x ← 25 B- x = 25 C- x := 25 D- int x = 25
Que : 21 - Select the correct example of complex datatype in Python पायथन में कॉम्प्लेक्स डेटाटाइप का सही उदाहरण चुनें A- 3 + 2j – B- 100j C- 5j D- All of the above are correct Ans : D - All of the above are correct
Que : 22 - If x=3.123, then int(x) will give? यदि x = 3.123, तो int (x) देगा? A- 1 B- 0 C- 1 D- 3
Que : 23 - Identify tuple from the following- निम्नलिखित से टपल की पहचान करें- A- [3] B- {1, 2, 3} C- (1, 2, 3, 4) D- None of the Above
Que : 24 - Which of the following is/are correct ways of creating strings ? निम्नलिखित में स्ट्रिंग्स बनाने के सही तरीके हैं? A- name = Jiya B- name = ‘Jiya’ C- name = “Jiya D- name = (Jiya)
Que : 25 - Escape sequences are treated as ………. . एस्केप सीक्वेंस को ……… के रूप में माना जाता है। । A- strings B- characters C- integers D- None of the above
Que : 26 - Which of the following is an escape sequence for a newline character ? निम्नलिखित में से कौन सा एक न्यूलाइन कैरेक्टर के लिए एक एस्केप सीक्वेंस है? A- \a B- \t C- \n D- \b
Que : 27 - Which of the following functions print the output to the console ? निम्नलिखित में से कौन सा फंक्शन आउटपुट को कंसोल पर प्रिंट करता है? A- Output( ) B- Print( ) C- Echo( ) D- print( )
Que : 28 - The input ( ) returns the value as ………. type. input ( ) किस तरह की वैल्यू रिटर्न करता है A- integer B- string C- floating point D- None of the above
Que : 29 - To print a line a text without ending it with a newline… argument is used with print ( ) print ( ) एक नई लाइन को समाप्त किए बिना टेक्स्ट को प्रिंट करने के लिए किस आर्ग्यूमेंट का प्रयोग किया जाता है। A- sep B- newline C- end D- next
Que : 30 - Python is पायथन है A- High-Level B- Interpreted C- Object-Oriented D- All of the Above Ans : D - All of the Above
Que : 31 - Which of the following keywords is not reversed keyword in python? निम्नलिखित में से कौन सा कीवर्ड पायथन में रिवर्स कीवर्ड नहीं है? A- None B- class C- goto D- and
Que : 32 - Name the statement that sends back a value from a function. किसी फ़ंक्शन से वैल्यू रिटर्न करने के लिए क्या स्टेटमेंट प्रयोग किया जाता है। A- print B- return C- input D- none
Que : 33 - Which values are used by the functions to communicate information back to the caller? फ़ंक्शन द्वारा कॉलर को वापस सूचना देने के लिए किस वैल्यू का उपयोग किया जाता है? A- local B- global C- random D- return
Que : 34 - Which line of code produces an error? कोड की कौन सी लाइन एक त्रुटि पैदा करती है? A- “PythonMcq” + “12” B- ‘PythonMcq’ + 16 C- 3 + 7 D- ‘PythonMcq’ + “21” Ans : B - ‘PythonMcq’ + 16
Que : 35 - How many keywords present in the python programming language? पायथन प्रोग्रामिंग भाषा में कितने कीवर्ड मौजूद हैं? A- 32 B- 61 C- 33 D- 27
Que : 36 - Functions that do not return any value are known as ऐसे कार्य जो किसी भी वैल्यू को रिटर्न नहीं करते हैं,________ के रूप में जाना जाता है A- fruitful functions B- void functions C- library functions D- user-defined functions
Que : 37 - The default separator character of print( ) is ………. print( ) का डिफ़ॉल्ट सेपरेटर ……… है। A- tab B- space C- newline D- dot
Que : 38 - Which of the following are valid identifiers? निम्नलिखित में से कौन से मान्य आइडेंटिफायर हैं? A- my name B- _myname C- 2myname D- my-name
Que : 39 - How to output the string “May the odds favor you” in Python? पायथन में स्ट्रिंग “May God Bless You” कैसे आउटपुट करें? A- print(“May God Bless You”) B- echo(“May God Bless You”) C- System.out(“May God Bless You”) D- printf(“May God Bless You”) Ans : A - print(“May God Bless You”)
Que : 40 - How to create a variable in Python with a value 22.6? पायथन में 22.6 वैल्यू के लिए एक वेरिएबल कैसे बनाएं? A- int a = 22.6 B- a = 22.6 C- Integer a = 22.6 D- None of the above
Que : 41 - How to add a single-line comment in Python? पायथन में सिंगल-लाइन कमेंट कैसे जोड़ें? A- /* This is a comment */ B- !! This is a comment C- // This is a comment D- # This is a comment Ans : D - # This is a comment
Que : 42 - How to represent 261500000 as a floating number in Python? पायथन में फ्लोटिंग नंबर के रूप में 261500000 को रिप्रेजेंट कैसे करें? A- 2.62E+08 B- 261500000 C- 2.62E+10 D- 2.6
Que : 43 - Select the correct example of complex datatype in Python पायथन में जटिल डेटाटाइप का सही उदाहरण चुनें A- 3 + 2j B- -100j C- 5j D- All of the above are correct Ans : D - All of the above are correct
Que : 44 - What is the correct way of creating a multi-line string in Python? पायथन में एक मल्टी-लाइन स्ट्रिंग बनाने का सही तरीका क्या है? A- " str = “”My name is Kevin and I
live in New York””" B- " str = “””My name is Kevin and I
live in New York”””" C- " str = “My name is Kevin and I
live in New York”" D- All of the above Ans : B - " str = “””My name is Kevin and I
live in New York”””"
Que : 45 - How to convert the uppercase letters in the string to lowercase in Python? पायथन में स्ट्रिंग में अपरकेस अक्षरों को लोअरकेस में कैसे परिवर्तित करें? A- lowercase() B- capitalize() C- lower() D- toLower()
Que : 46 - Which Python module is used to parse dates in almost any string format? किसी भी स्ट्रिंग फॉर्मेट में दिनांक को पार्स करने के लिए किस पायथन मॉड्यूल का उपयोग किया जाता है? A- datetime module B- time module C- calendar module D- dateutil module Ans : D - dateutil module
Que : 47 - Which of the following is the correct way to indicate Hexadecimal Notation in Python? निम्नलिखित में से कौन सा पायथन में हेक्साडेसिमल नोटेशन को इंगित करने का सही तरीका है? A- str = ‘\62’ B- str = ’62’ C- str = “62” D- str = ‘\x62’
Que : 48 - To begin slicing from the end of the string, which of the following is used in Python? निम्नलिखित में से स्ट्रिंग के अंत से स्लाइसिंग शुरू करने के लिए पायथन में कौन सा उपयोग किया जाता है? A- Indexing B- Negative Indexing C- Begin with 0th index D- Escape Characters Ans : B - Negative Indexing
Que : 49 - How to fetch characters from a given range in Python? पायथन में किसी दिए गए रेंज से कैरेक्टर को कैसे लाया जाए? A- [:] B- in operator C- [] D- None of the above
Que : 50 - How to capitalize only the first letter of a sentence in Python? पायथन में वाक्य के पहले अक्षर को कैपिटल कैसे किया जाता है? A- uppercase() method B- capitalize() method C- upper() method D- None of the above Ans : B capitalize() method
Que : 51 - What is the correct way to get the maximum value from Tuple in Python? पायथन में टपल से अधिकतम मूल्य प्राप्त करने का सही तरीका क्या है? A- print (max(mytuple)); B- print (maximum(mytuple)); C- print (mytuple.max()); D- print (mytuple.maximum); Ans : A - print (max(mytuple));
Que : 52 - How to fetch and display only the keys of a Dictionary in Python? पायथन में एक डिक्शनरीसे केवल की को फ़ैच एवं डिस्प्ले कैसे करें? A- print(mystock.keys()) B- print(mystock.key()) C- print(keys(mystock)) D- print(key(mystock)) Ans : A - print(mystock.keys())
Que : 53 - How to align a string centrally in Python? पायथन में एक स्ट्रिंग को सेंट्रली एलाइन कैसे करें? A- align() method B- center() method C- fill() method D- None of the above Ans : B - center() method
Que : 54 - How to set the tab size to 6 in Python Strings? पायथन स्ट्रिंग्स में टैब का आकार 6 कैसे सेट करें? A- expandtabs(6) B- tabs(6) C- expand(6) D- None of the above
Que : 55 - ___________ uses square brackets for comma-separated values in Python? ___________ पायथन में अल्पविराम-मानों के लिए वर्ग कोष्ठक का उपयोग करता है? A- Lists B- Dictionary C- Tuples D- None of the above
Que : 56 - How to display whether the date is AM/PM in Python? पायथन में तारीख AM/PM को कैसे प्रदर्शित करेंगे? A- Use the %H format code B- Use the %p format code C- Use the %y format code D- Use the %I format code Ans : B - Use the %p format code
Que : 57 - Which of the following is the correct way to access a specific element from a Multi-Dimensional List? निम्नलिखित में से कौन एक बहु-आयामी सूची से किसी विशिष्ट तत्व तक पहुंचने का सही तरीका है? A- list[row_size:column_size] B- list[row_size][column_size] C- list[(row_size)(column_size)] D- None of the above Ans : B - list[row_size][column_size]
Que : 58 - Which of the following Bitwise operators in Python shifts the left operand value to the right, by the number of bits in the right operand? पायथन में निम्नलिखित में से कौन सा बिटवाइज ऑपरेटर दाएं ऑपरेंड में बिट्स की संख्या से बाएं ऑपरेंड मान को दाईं ओर बदल देता है? A- Bitwise XOR Operator B- Bitwise Right Shift Operator C- Bitwise Left Shift Operator D- None of the Above Ans : B - Bitwise Right Shift Operator
Que : 59 - How to specify range of index in Python Tuples? Let’s say our tuple name is “mytuple” पायथन ट्यूपल्स में इंडेक्स की सीमा कैसे निर्दिष्ट करें? मान लीजिए कि टपल नाम "mytuple" है A- print(mytuple[1:4]) B- print(mytuple[1 to 4]) C- print(mytuple[1-4]) D- print(mytuple[].slice[1:4]) Ans : A - print(mytuple[1:4])
Que : 60 - How to correctly create a function in Python? पायथन में कैसे सही ढंग से एक फ़ंक्शन बनाएं? A- demoFunction() B- def demoFunction() C- function demoFunction() D- void demoFunction() Ans : B - def demoFunction()
Que : 61 - Which one of the following is a valid identifier declaration in Python? निम्नलिखित में से कौन सा पायथन में एक वैलिड आइडेंटिफायर डिक्लेरेशन है? A- str = “demo666” B- str = “666” C- str = “demo demo2” D- str = “$$$666” Ans : A - str = “demo666”
Que : 62 - How to check whether all the characters in a string is printable? कैसे जांचें कि क्या एक स्ट्रिंग में सभी वर्ण प्रिंट करने योग्य हैं? A- print() method B- printable() method C- isprintable() method D- echo() method Ans : C - isprintable() method
Que : 63 - How to delete an element in a Dictionary with a specific key. Let’s say we need to delete the key “Price” एक विशिष्ट कुंजी के साथ एक डिक्शनरीमें एक तत्व को कैसे हटाएं। मान लीजिए कि हमें “Price” को हटाने की आवश्यकता है A- del dict[‘Price’] B- del.dict[‘Price’] C- del dict(‘Price’) D- del.dict[‘Price’] Ans : A - del dict[‘Price’]
Que : 64 - How to swap cases in Python i.e. lowercase to uppercase and vice versa? पायथन में अपरकेस और इसके विपरीत लोअरकेस को कैसे स्वैप करें? A- casefold() method B- swapcase() method C- case() method D- title() method Ans : B - swapcase() method
Que : 65 - The def keyword is used in Python to _______? def कीवर्ड का उपयोग पायथन में _______ पर किया जाता है? A- Define a function name B- Define a list C- Define an array D- Define a Dictionary Ans : A - Define a function name
Que : 66 - Which of the following is used to empty the Dictionary in Python? Let’s say our dictionary name is “iticopa”. निम्नलिखित में से किसका उपयोग पायथन में डिक्शनरीको खाली करने के लिए किया जाता है? बता दें कि हमारा डिक्शनरीनाम “iticopa” है। A- iticopa.del() B- clear iticopa C- del iticopa D- iticopa.clear() Ans : D - iticopa.clear()
Que : 67 - How to display only the day number of years in Python? पायथन में केवल दिन की संख्या को कैसे प्रदर्शित करें? A- date.strftime(“%j”) B- date.strftime(“%H”) C- date.strftime(“%I”) D- date.strftime(“%p”) Ans : A - date.strftime(“%j”)
Que : 68 - What is used in Python functions, if you have no idea about the number of arguments to be passed? अगर आपको आर्ग्यूमेंट की संख्या के बारे में कोई जानकारी नहीं है, तो पायथन फ़ंक्शंस में क्या उपयोग किया जाता है, ? A- Keyword Arguments B- Default Arguments C- Required Arguments D- Arbitrary Arguments Ans : D - Arbitrary Arguments
Que : 69 - What is the correct way to create a Dictionary in Python? पायथन में एक डिक्शनरी बनाने का सही तरीका क्या है? A- mystock = {“Product”: “Earphone”, “Price”: 800, “Quantity”: 50} B- mystock = {“Product”- “Earphone”, “Price”-800, “Quantity”-50} C- mystock = {Product[Earphone], Price[800], Quantity[50]} D- None of the above Ans : A - mystock = {“Product”: “Earphone”, “Price”: 800, “Quantity”: 50}
Que : 70 - In Python Functions, what is to be used to skip arguments or even pass them in any order while calling a function? पायथन फ़ंक्शन में, किसी फ़ंक्शन को कॉल करते समय आर्ग्यूमेंट को छोड़ने या किसी भी क्रम में उन्हें पास करने के लिए क्या उपयोग किया जाना है? A- Keyword arguments B- Default Arguments C- Required Arguments D- Arbitrary Arguments Ans : A - Keyword arguments
Que : 71 - How to get the total length of a Tuple in Python? पायथन में एक टपल की कुल लंबाई कैसे प्राप्त करें? A- count() method B- length() method C- len() method D- None of the above
Que : 72 - How to access a value in Tuple? टपल में एक वैल्यू को एक्सेस कैसे करेंगे? A- mytuple(1) B- mytuple{1} C- mytuple[1] D- None of the above
Que : 73 - What is to be used to create a Dictionary of arguments in a Python function? पायथन फ़ंक्शन में आर्ग्यूमेंट डिक्शनरी बनाने के लिए क्या उपयोग किया जाना है? A- Arbitrary arguments in Python (*args) B- Arbitrary keyword arguments in Python (**args) C- Keyword Arguments D- Default Arguments Ans : B - Arbitrary keyword arguments in Python (**args)
Que : 74 - How to convert the lowercase letters in the string to uppercase in Python? पायथन में लोअरकेस स्ट्रिंग को अपरकेस में कैसे परिवर्तित करें? A- upper() B- uppercase() C- capitalize() D- toUpper()
Que : 75 - What is the correct way to get the minimum value from a List in Python? पायथन में किसी लिस्ट से न्यूनतम मूल्य प्राप्त करने का सही तरीका क्या है? A- print (minimum(mylist)); B- print (min(mylist)); C- print (mylist.min()); D- print (mylist.minimum()); Ans : B - print (min(mylist));
Que : 76 - Which of the following correctly converts int to float in Python? पायथन में कौन सा इंटीजर से फ्लोट को परिवर्तित करता है? A- res = float(10) B- res = convertToFloat(10) C- res = convertFloat(10) D- None of the above Ans : A - res = float(10)
Que : 77 - How to get the type of a variable in Python? पायथन में वेरिएबल का प्रकार कैसे प्राप्त करें? A- print(typeOf(a)) B- print(typeof(a)) C- print(type(a)) D- None of the above
Que : 78 - How to compare two operands in Python and check for equality? Which operator is to be used? पायथन में दो ऑपरेंड की तुलना और समानता के लिए किस ऑपरेटर का उपयोग किया जाता है? A- = B- in operator C- is operator D- ==
Que : 79 - What is the correct way to get minimum value from Tuple? ट्यूपल से न्यूनतम मूल्य प्राप्त करने का सही तरीका क्या है? A- print (min(mytuple)); B- print (minimum(mytuple)); C- print (mytuple.min()); D- print (mytuple.minimum); Ans : A print (min(mytuple));
Que : 80 - How to display only the current month’s number in Python? पायथन में केवल वर्तमान महीने की संख्या कैसे प्रदर्शित करें? A- date.strftime(“%H”) B- date.strftime(“%I”) C- date.strftime(“%p”) D- date.strftime(“%m”) Ans : D - date.strftime(“%m”)
Que : 81 - How to compare two objects and check whether they have the same memory locations? दो वस्तुओं की तुलना कैसे करें और जांचें कि क्या उनके पास एक ही मेमोरी स्थान हैं? A- is operator B- in operator C- ** D- Bitwise operators
Que : 82 - How to fetch and display only the values of a Dictionary in Python? पायथन में केवल एक डिक्शनरी की वैल्यू को कैसे प्राप्त और प्रदर्शित किया जाता है? A- print(mystock.value()) B- print(mystock.values()) C- print(values(mystock)) D- print(value(mystock)) Ans : A - print(mystock.value())
Que : 83 - Which operator is used in Python to raise numbers to the power? पावर बढ़ाने के लिए पायथन में किस ऑपरेटर का उपयोग किया जाता है? A- Bitwise Operators B- Exponentiation Operator (**) C- Identity Operator (is) D- Membership Operators (in) Ans : B - Exponentiation Operator (**)
Que : 84 - ____________ represents key-value pair in Python? ____________ पायथन में key-value जोड़ी का प्रतिनिधित्व करता है? A- Tuples B- Lists C- Dictionary D- All the Above
Que : 85 - Which of the following Bitwise operators sets each bit to 1, if only one of them is 1, i.e. if only one of the two operands is 1? निम्नलिखित में से कौन सा बिटवाइज ऑपरेटर प्रत्येक बिट को 1 पर सेट करता है, यदि उनमें से केवल एक 1 है, यानी यदि केवल दो ऑपरेंड में से एक है तो 1 है? A- Bitwise XOR B- Bitwise OR C- Bitwise AND D- Bitwise NOT
Que : 86 - What is the correct way to get the maximum value from a List in Python? पायथन में किसी लिस्ट से अधिकतम मूल्य प्राप्त करने का सही तरीका क्या है? A- print (maximum(mylist)); B- print (mylist.max()); C- print (max(mylist)); D- print (mylist.maximum()); Ans : C - print (max(mylist));
Que : 87 - How to display only the current month’s name in Python? पायथन में केवल वर्तमान महीने का नाम कैसे प्रदर्शित करें? A- date.strftime(“%H”) B- date.strftime(“%B”) C- date.strftime(“%m”) D- date.strftime(“%d”) Ans : B - date.strftime(“%B”)
Que : 88 - How to create an empty Tuple in Python? पायथन में एक खाली टपल कैसे बनाएं? A- mytuple = () B- mytuple = (0) C- mytuple = 0 D- mytuple =
Que : 89 - What is the correct way to create a list with type float? टाइप फ्लोट के साथ एक लिस्ट बनाने का सही तरीका क्या है? A- mylist = [5.7, 8.2, 9. 3.8, 2.9] B- mylist = (5.7, 8.2, 9. 3.8, 2.9) C- mylist = {5.7, 8.2, 9. 3.8, 2.9} D- None of the above Ans : A - mylist = [5.7, 8.2, 9. 3.8, 2.9]
Que : 90 - How to display only the day number of years in Python? पायथन में केवल वर्ष में दिन की संख्या को कैसे प्रदर्शित करें? A- date.strftime(“%j”) B- date.strftime(“%H”) C- date.strftime(“%I”) D- date.strftime(“%p”) Ans : A - date.strftime(“%j”)
Que : 91 - Delete multiple elements in a range from a Python List एक पायथन लिस्ट से रेंज के मल्टीप्ल एलिमेंट्स को हटाने के लिए प्रयोग किया जाता है? A- del mylist[2:4] B- del mylist(2:4) C- del mylist[2 to 4] D- del mylist(2 to 4) Ans : A - del mylist[2:4]
Que : 92 - How to fetch the last element from a Python List with negative indexing? नेगेटिव इंडेक्सिंग के साथ एक पायथन लिस्ट से अंतिम एलिमेंट्स कैसे प्राप्त करें? A- print(“Last element = “,mylist[0]) B- print(“Last element = “,mylist[]) C- print(“Last element = “,mylist[-1]) D- None of the above Ans : C - print(“Last element = “,mylist[-1])
Que : 93 - What is the correct way to get the length of a List in Python? पायथन में एक लिस्ट की लेंथ प्राप्त करने का सही तरीका क्या है? A- mylist.count() B- count(mylist) C- len(mylist) D- length(mylist)
Que : 94 - To get today’s date, which Python module is to be imported? आज की तारीख पाने के लिए, किस पायथन मॉड्यूल को आयात किया जाना है? A- calendar module B- datetime module C- dateutil module D- None of the above Ans : B - datetime module
Que : 95 - Is Python case sensitive when dealing with identifiers? क्या पाइथन में आइडेंटिफायर केस संवेदनशील है? A- yes B- no C- machine dependent D- None of the above
Que : 96 - What is the maximum possible length of an identifier? एक आइडेंटिफायर की अधिकतम संभव लंबाई क्या है? A- 31 characters B- 63 characters C- 79 characters D- None of the above Ans : D - None of the above
Que : 97 - Which of the following is invalid? निम्नलिखित में से कौन सा अमान्य है? A- _a = 1 B- a = 1 C- str = 1 D- None of the above Ans : D - None of the above
Que : 98 - Which of the following is an invalid variable? निम्नलिखित में से कौन एक अमान्य वेरिएबल है? A- my_string_1 B- 1st_string C- foo D- _
Que : 99 - Which of the following is not a keyword? निम्नलिखित में से कौन सा कीवर्ड नहीं है? A- eval B- assert C- nonlocal D- pass
Que : 100 - All keywords in Python are in पायथन में सभी कीवर्ड हैं A- lower case B- UPPER CASE C- Capitalized D- None of the above Ans : D - None of the above
Que : 101 - Which of the following is true for variable names in Python? पायथन में वेरिएबल नामों के लिए निम्नलिखित में से कौन सा सही है? A- unlimited length B- all private members must have leading and trailing underscores C- underscore and ampersand are the only two special characters allowed D- None of the above Ans : A - unlimited length
Que : 102 - Which of the following is an invalid statement? निम्नलिखित में से कौन एक अमान्य कथन है? A- abc = 1,000,000 B- a b c = 1000 2000 3000 C- a,b,c = 1000, 2000, 3000 D- a_b_c = 1,000,000 Ans : B - a b c = 1000 2000 3000
Que : 103 - Which of the following cannot be a variable? निम्नलिखित में से कौन एक वेरिएबल नहीं हो सकता है? A- init B- in C- it D- on
Que : 104 - What is the output of print 0.1 + 0.2 == 0.3? print 0.1 + 0.2 == 0.3 का आउटपुट क्या है? A- True B- False C- Machine dependent D- Error
Que : 105 - Which of the following is not a complex number? निम्नलिखित में से कौन एक जटिल संख्या नहीं है? A- k = 2 + 3j B- k = complex(2, 3) C- k = 2 + 3l D- k = 2 + 3J
Que : 106 - What is the type of inf? INF का प्रकार क्या है? A- Boolean B- Integer C- Float D- Complex
Que : 107 - What does ~4 evaluate to? ~ 4 का मूल्यांकन क्या है? A- -5 B- -4 C- -3 D- 3
Que : 108 - What does ~~~~~~5 evaluate to? ~~~~~~ 5 का मूल्यांकन क्या है? A- 5 B- -11 C- 11 D- -5
Que : 109 - Which of the following is incorrect? निम्नलिखित में से कौन गलत है? A- x = 0b101 B- x = 0x4f5 C- x = 19023 D- x = 03964
Que : 110 - What is the result of cmp(3, 1)? cmp(3, 1) का परिणाम क्या है? A- 1 B- 0 C- True D- False
Que : 111 - Which of the following is incorrect? निम्नलिखित में से कौन गलत है? A- float(‘inf’) B- float(‘nan’) C- float(’56’+’78’) D- float(’12+34′)
Que : 112 - What is the result of round(0.5) – round(-0.5)? round(0.5) – round(-0.5) का परिणाम क्या है? A- 1 B- 2 C- 0 D- None of the above
Que : 113 - What does 3 ^ 4 evaluate to? 3 ^ 4 का मूल्यांकन क्या करता है? A- 81 B- 12 C- 0.75 D- 7
Que : 114 - Which of the following statements create a dictionary? निम्नलिखित में से कौन सा कथन एक डिक्शनरी बनाता है? A- d = {} B- d = {“john”:40, “peter”:45} C- d = {40:”john”, 45:”peter”} D- All of the above Ans : D - All of the above
Que : 115 - What will be the output of the following Python code snippet? निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा? d = {"copa":40, "guide":45} A- “copa”, 40, 45, and “guide” B- “copa” and “guide” C- 40 and 45 D- d = (40:”copa”, 45:”guide”) Ans : B - “copa” and “guide”
You can learn and practice Online Computer Test questions and improve your Computer Knowledge.
Computer Online Test Series / Computer MCQs are very helpful for Computer Learners and Students of CCC, CCA, DCA, BCA, PGDCA, DOEACC, ITI COPA (Computer Operator and Programming Assistant) and aspirants of competitive exams like CPCT, SSC, Bank PO, Clerk, IBPS, Railway, PSUs, SSC CGL, SSC CHSL etc.
कंप्यूटर फंडामेंटल्स नोट्स के अंतर्गत आप कंप्यूटर का सामान्य परिचय, कम्प्यूटर फंडामेंटल्स, कम्प्यूटर का इतिहास एवं जनरेशन, कम्प्यूटर का वर्गीकरण, कंप्यूटर के इनपुट डिवाइस, कंप्यूटर के आउटपुट डिवाइस, कम्प्यूटर मेमोरी, कैश मेमोरी सेकेंडरी मेमोरी, कंप्यूटर हार्डवेयर, कंप्यूटर सॉफ्टवेयर, प्रोग्रामिंग लैंग्वेज, डेटा कम्युनिकेशन एवं नेटवर्किंग, नेटवर्क एवं नेटवर्क टोपोलॉजी, आदि से सम्बन्धित ऑनलाइन नोट्स हिंदी एवं अंग्रेजी में प्राप्त कर सकते हैं.
ऑपरेटिंग सिस्टम के अंतर्गत ऑपरेटिंग सिस्टम का परिचय,
ऑपरेटिंग सिस्टम के प्रकार, विंडोज ऑपरेटिंग सिस्टम का परिचय, विंडोज कंपोनेंट्स, विंडोज एक्सेसरीज, विंडोज सिस्टम टूल्स, विंडोज शॉर्टकट की (Shortcut Keys), विंडोज नोटपैड, विंडोज वर्डपैड,
विंडोज वर्डपैड शॉर्टकट की (Shortcut Keys), डिस्क ऑपरेटिंग सिस्टम, DOS कमांड्स Overview, यूनिक्स ऑपरेटिंग सिस्टम, यूनिक्स कमांड्स, लाईनक्स ऑपरेटिंग सिस्टम,
Windows Operating System, Disk Operating System,
UNIX Operating System, Linux Operating System, आदि से सम्बन्धित हिंदी एवं अंग्रेजी में ऑनलाइन नोट्स प्राप्त कर सकते हैं.
माइक्रोसॉफ्ट ऑफिस के अंतर्गत ऑफिस सॉफ्टवेयर पैकेज का परिचय,
वर्ड प्रोसेसिंग सॉफ्टवेयर का परिचय, माइक्रोसॉफ्ट वर्ड, माइक्रोसॉफ्ट वर्ड का परिचय, माइक्रोसॉफ्ट वर्ड रिबन एवं टैब्स का प्रयोग, माइक्रोसॉफ्ट वर्ड टेक्स्ट फ़ॉर्मेटिंग, माइक्रोसॉफ्ट वर्ड पैराग्राफ फ़ॉर्मेटिंग, माइक्रोसॉफ्ट वर्ड बुलेट एवं नंबरिंग, माइक्रोसॉफ्ट वर्ड टेबल का प्रयोग, माइक्रोसॉफ्ट वर्ड टेबल फ़ॉर्मेटिंग, माइक्रोसॉफ्ट वर्ड टेबल एडवांस फीचर, माइक्रोसॉफ्ट वर्ड ग्राफ़िक्स प्रयोग, माइक्रोसॉफ्ट वर्ड हैडर एवं फुटर, माइक्रोसॉफ्ट वर्ड पेज सेटअप, माइक्रोसॉफ्ट वर्ड स्पेलिंग एवं ग्रामर, माइक्रोसॉफ्ट वर्ड मेल मर्ज का प्रयोग, माइक्रोसॉफ्ट एक्सेल का परिचय, माइक्रोसॉफ्ट एक्सेल में कार्य करना , माइक्रोसॉफ्ट एक्सेल प्रोग्राम विंडो , माइक्रोसॉफ्ट एक्सेल फ़ॉर्मूला एवं फंक्शन , फार्मूला बार का उपयोग, माइक्रोसॉफ्ट एक्सेल | चार्ट का प्रयोग माइक्रोसॉफ्ट एक्सेल चार्ट्स, माइक्रोसॉफ्ट फ़ॉर्मेटिंग फीचर , माइक्रोसॉफ्ट पॉवरपॉइंट का परिचय,
Introduction to Office Softwares , Word Processing Applications using MS-Word , Spreadsheet Applications using MS-Exce l, Presentations using MS-Power Point आदि से सम्बन्धित हिंदी एवं अंग्रेजी में ऑनलाइन नोट्स प्राप्त कर सकते हैं.
Tags - 100+ Important Python Programming Question Answer Hindi PDF Download. Practice Important Python MCQ for All Computer Courses & Competitive Exams. Basic Computer Online Test Series in Hindi and English & Online Basic Computer Question and Answers. Computer General Knowledge Online Practice Test in Hindi, Computer GK Online Test in Hindi for Railway, Bank Clerk, SSC, Patwari, Competitive and Recruitment Exams.Free Basic Computer Online Test In Hindi and English | Free Online Test | Free Quiz | Free Computer MCQ | Computer Online Test Series In Hindi. Online Tests for COPA NCVT SCVT. ITI Online Exam, Mock Test ONLINE CBT for ITI Students. Online CBT EXAM COPA TRADE. Online Test Series and Practice mock test for ITI Trades. COPA TRADE-MOCK TEST PRACTICE TEST. Exam Paper COPA Theory COPA Practical. Online Test Series and Practice mock test for COPA-ITI. NCVT ITI ONLINE EXAM PREPARATION. ITI MCQ-OLD NCVT PAPER. ONLINE EXAM COPA IN HINDI. ITI COPA Exam Question Paper PDF Download. ITI NIMI Pattern Online CBT Test. ITI ONLINE EXAM MOCK TEST. Online Mock Test for Computer Topics - Computer Fundamental | OPERATING SYSTEM | Microsoft Windows | DOS | Linux | Microsoft Word | Microsoft Excel| Microsoft PowerPoint | DBMS | Microsoft Access |HTML PROGRAMMING | JavaScript | Computer Networking and Internet | VBA- VISUAL BASIC FOR APPLICATIONS | Financial Accounting Tally |E Commerce and Cyber Security