MCQs on Python
UPPCL Technician 2021
पायथन निम्नलिखित में से किस प्रोग्रामिंग भाषा पीढ़ी से संबंधित है?
Python belongs to which of the following programming language generation?
[A] Fourth
[B] First
[C] Third
[D] Second
Correct Answer : Fourth
MPESB Police Constable 2023
एक चर एक पहचानकर्ता है जो मानों को संग्रहीत कर सकता है। कीवर्ड ____ का उपयोग एक चर घोषित करने के लिए किया जाता है।
A variable is an identifier that can store values. Keyword ____ is used to declare a variable.
[A] dec
[B] var
[C] str
[D] vra
Correct Answer : var
MPESB Police Constable 2023
पायथन में, वर्णों के क्रमागत अनुक्रम को कहा जाता है:
In python, consecutive sequence of characters is known as a :
[A] String
[B] List
[C] Dictionaries
[D] Tuples
Correct Answer : String
RSMSSSB IA 2023
पायथन में उपयोगकर्ता परिभाषित फ़ंक्शन कीवर्ड __ का उपयोग करके लिखे गए हैं
User defined functions in Python are written using the keyword __
[A] define
[B] Define
[C] def
[D] Def
Correct Answer : def
UPPCL AA 2021
निम्नलिखित में से कौन सा एक कम्प्यूटेशनल समस्या को हल करने के लिए चरण-दर-चरण प्रक्रिया का प्रतिनिधित्व करता है?
Which of the following represents a step-by-step process to solve a computational problem?
[A] Algorithm
[B] Routine
[C] Function
[D] Number system
Correct Answer : Algorithm
UPPCL AA 2021
निम्नलिखित में से किसे चार्ल्स बैबेज द्वारा डिजाइन किया गया था, और यह एक भाप चालित गणना मशीन थी जिसे लघुगणक तालिकाओं जैसी संख्याओं की तालिका को हल करने के लिए डिज़ाइन किया गया था?
Which of the following was designed by Charles Babbage , and it was a steam driven calculating machine designed to solve table of numbers like logarithm tables ?
[A] Differential Analyzer
[B] Pascaline
[C] Difference Engine
[D] Abacus
Correct Answer : Difference Engine
MPESB Group-4 2023
निम्नलिखित में से कौन सा ' नो आर्ग्युमेंट ' फ़ंक्शन है?
Which one of the following is ‘no argument’ function?
[A] Now()
[B] Lower()
[C] Max()
[D] IF()
Correct Answer : Now()
Chhattisgarh ITI 2023
निम्नलिखित कोड स्निपेट का आउटपुट क्या है?
What is the output of the following code snippet?
const arr = [1, 2, 3, 4, 5];
arr.splice(1, 2, ‘a’, ‘b’);
console.log(arr);
[A] [1, ‘a’, ‘b’, 4, 5]
[B] [1, 2, 3, ‘a’, ‘b’]
[C] [1, 2, ‘a’, ‘b’, 4, 5]
[D] [1, 3, 4, 5, ‘a’, ‘b’]
Correct Answer : [1, ‘a’, ‘b’, 4, 5]
Chhattisgarh ITI 2023
किसी रिश्ते की पंक्ति को क्या कहा जाता है?
What is a row of a relation known as?
[A] Degree
[B] Entity
[C] Tuple
[D] Link
Correct Answer : Tuple
UPPCL-TG2-2021
जावा और पायथन किस प्रकार की कंप्यूटर प्रोग्रामिंग भाषा हैं?
What type of computer programming language are Java and Python?
[A] Procedural programming language
[B] High-level programming language
[C] Low-level programming language
[D] Assembly programming language
Correct Answer : High-level programming language
UPPCL-TG2-2021
__________ एक चरणबद्ध प्रक्रिया है, जो वांछित आउटपुट प्राप्त करने के लिए एक निश्चित क्रम में निष्पादित किए जाने वाले निर्देशों के एक सेट को परिभाषित करती है।
A/An __________is a step by step procedure , which defines a set of instruction to be executed in a certain order to get the desired output .
[A] Order
[B] Algorithum
[C] Sequence
[D] Protocol
Correct Answer : Algorithum
UPPCL-TG2-2021
पायथन में, मॉड्यूल केवल एक _______ एक्सटेंशन वाली फाइलें होती हैं जिनमें पायथन कोड होता है जिसे किसी अन्य पायथन प्रोग्राम के अंदर आयात किया जा सकता है।
In Python, modules are simply files with the a _______extension containing a python code that can be imported inside another Python program.
[A] .1st
[B] .txt
[C] .dat
[D] .py
Correct Answer : .py
UPPCL-TG2-2021
_______ एक एकीकृत विकास वातावरण (आईडीई) है जो पायथन के साथ आता है।
A/An _______is an integrated development environment (IDE) that comes with Python .
[A] Visual studio
[B] Net Beans
[C] IDLE
[D] Datagrip
Correct Answer : IDLE
UPPCL-TG2-2021
एक कंपाइलर सॉफ्टवेयर जो उच्च स्तरीय भाषा में लिखे गए स्रोत कोड को मशीन भाषा निर्देश के एक सेट में अनुवाद करता है, उसे ________ के रूप में जाना जाता है।
A compiler software that translate sources code written in a high -level language into a set of machine language instruction is known as ________ .
[A] Compiler
[B] Operating system
[C] Firmware
[D] Device driver
Correct Answer : Compiler
CTS-COPA 2024
पाइथन में पिप का क्या अर्थ है?
What does pip stand for python?
[A] Unlimited Length
[B] All private members must have leading and trailing underscres
[C] Preferred installer Program
[D] None of the mentioned
Correct Answer : Preferred installer Program
CTS-COPA 2024
निम्नलिखित में से कौन पायथन प्रोग्रामिंग में कोर डेटा प्रकार नहीं है?
Which of the following is not a core data type in Python programming ?
[A] Tuples
[B] Lists
[C] Class
[D] Dictionary
Correct Answer : Class
CTS-COPA 2024
निम्नलिखित में से किसकी अभिव्यक्ति में सर्वोच्च प्राथमिकता है?
Which one of the following has the highest precedence in the expression?
[A] Division
[B] Substraction
[C] Power
[D] Parentheses
Correct Answer : Parentheses
CTS-COPA 2024
निम्नलिखित में से कौन सा ऑपरेटर पावर(ab) के लिए सही विकल्प है?
Which of the following operators is the correct option for power(ab)?
[A] a^b
[B] a**b
[C] a^^b
[D] a^*b
Correct Answer : a**b
CTS-COPA 2024
निम्नलिखित में से कौन सा एक वैध पायथन if कथन है?
Which one of the following is a valid Python if statement ?
[A] if a>=2:
[B] if(a>=2)
[C] if(a=>22)
[D] ifa>=22
Correct Answer : if a>=2: