Syllabus
O Level
M1 R5: Information Technology Tools and Network Basics
Introduction to Computers
Office Automation Tools
Internet and Web Technologies
Networking Fundamentals
M2 R5: Web Designing and Publishing
HTML
CSS
Javascript
Web Hosting And Publishing
M3 R5: Programming and Problem Solving through Python
Introduction to Programming
Python Programming
Data Structures in Python
File Processing in Python
M4 R5: Internet of Things (IoT) and Its Applications
Introduction to IoT
IoT Architecture
IoT Applications
IoT Security and Challenges | Soft Skills
Courses
Under Graduate Courses
BA
BCA
B.COM
Post Graduate Courses
MCA
MBA
M.COM
MA
M.SC.(MATHS)
MSW
Institutional Courses
DCA
ADCA
DFA
DOAP
TALLY PRIME
JAVA
PYTHON
CCA
C Languages
Job Oriented Courses
Digital Marketing
Full Stack Development
Data Science
Cybersecurity and Ethical Hacking
Blockchain Development
Cloud Computing
Artificial Intelligence (AI) and Machine Learning
Government Courses
CCC
O LEVEL
A LEVEL
Mock Test
M1 R5: Information Technology Tools and Network Basics
M2 R5: Web Designing and Publishing
M3 R5: Programming and Problem Solving through Python
M4 R5: Internet of Things (IoT) and Its Applications
Old Papers
2025
New!
2024
New!
2023
New!
2022
New!
2021
New!
2020
New!
2019
New!
2018
New!
2017
New!
2016
New!
2015
New!
2014
New!
2013
New!
2012
New!
2011
New!
Assignments
HTML
New!
CSS
New!
Javascript
New!
Python
New!
Log in
Sign Up
O Level Papers!
M3 R5: Programming and Problem Solving through Python
Python Programming
Set 1
25
See Explanation !
1
Is Python case sensitive when dealing with identifiers?
क्या पहचानकर्ताओं से निपटते समय पायथन केस संवेदनशील होता है?
yes
no
machine dependent
none of the mentioned
Next Question
25
See Explanation !
2
Which of the following is an invalid variable?
निम्नलिखित में से कौन सा एक अमान्य चर है?
my_string_1
1st_string
foo
_myvar
Previous Question
Next Question
25
See Explanation !
3
Which of the following is an invalid statement?
निम्नलिखित में से कौन सा एक अमान्य कथन है?
abc = 1,000,000
a b c = 1000 2000 3000
a,b,c = 1000, 2000, 3000
a_b_c = 1,000,000
Previous Question
Next Question
25
See Explanation !
4
Which of the following cannot be a variable?
निम्नलिखित में से कौन एक चर नहीं हो सकता है?
__init__
in
it
on
Previous Question
Next Question
25
See Explanation !
5
Which of these in not a core data type in python?
इनमें से कौन सा पायथन में कोर डेटा प्रकार नहीं है?
Lists
Dictionary
Tuples
Class
Previous Question
Next Question
25
See Explanation !
6
Given a function that does not return any value, What value is thrown by default when executed in shell.
एक फ़ंक्शन को देखते हुए जो किसी भी मान को वापस नहीं करता है, शेल में निष्पादित होने पर डिफ़ॉल्ट रूप से कौन सा मान फेंक दिया जाता है।
int
bool
void
None
Previous Question
Next Question
25
See Explanation !
7
Which of the following will run without errors?
निम्नलिखित में से कौन सी त्रुटि के बिना चलेगी?
round(45.8)
round(6352.898,2,5)
round()
round(7463.123,2,1)
Previous Question
Next Question
25
See Explanation !
8
What is the return type of function id?
फ़ंक्शन आईडी का रिटर्न प्रकार क्या है?
int
float
bool
dict
Previous Question
Next Question
25
See Explanation !
9
In order to store values in terms of key and value we use what core data type.
की और वैल्यू के संदर्भ में मानों को संग्रहीत करने के लिए हम किस कोर डेटा प्रकार का उपयोग करते हैं।
list
tuple
class
dictionary
Previous Question
Next Question
25
See Explanation !
10
The data type whose representation is known are called
जिस डेटा प्रकार का प्रतिनिधित्व ज्ञात है उसे कहा जाता है
Built in datatype
Derived datatype
Concrete datatype
Abstract datatype
Previous Question
Next Question
25
See Explanation !
11
The data type whose representation is unknown are called
जिस डेटा प्रकार का प्रतिनिधित्व अज्ञात है उसे कहा जाता है
Built in datatype
Derived datatype
Concrete datatype
Abstract datatype
Previous Question
Next Question
25
See Explanation !
12
Who developed Python ?
पायथन किसने विकसित किया?
Ritche
Guido Van Rossum
Bill Gates
Sunder Pitchai
Previous Question
Next Question
25
See Explanation !
13
The Python prompt indicates that Interpreter is ready to accept instruction.
पाइथन प्रॉम्प्ट इंगित करता है कि दुभाषिया निर्देश स्वीकार करने के लिए तैयार है।
>>>
<<<
#
<<
Previous Question
Next Question
25
See Explanation !
14
Which of the following character is used to give comments in Python Program ?
पायथन प्रोग्राम में टिप्पणियां देने के लिए निम्नलिखित में से किस वर्ण का उपयोग किया जाता है?
#
&
@
$
Previous Question
Next Question
25
See Explanation !
15
This symbol is used to print more than one item on a single line.
इस सिंबल का इस्तेमाल एक ही लाइन में एक से ज़्यादा आइटम प्रिंट करने के लिए किया जाता है।
Semicolon(;)
Dollor($)
comma(,)
Colon(:)
Previous Question
Next Question
25
See Explanation !
16
Which of the following is not a token ?
निम्नलिखित में से कौन एक टोकन नहीं है?
Interpreter
Identifiers
Keyword
Operators
Previous Question
Next Question
25
See Explanation !
17
Which of the following is not a Keyword in Python ?
पायथन में निम्नलिखित में से कौन सा कीवर्ड नहीं है?
break
while
continue
operators
Previous Question
Next Question
25
See Explanation !
18
The program must be able to handle unexpected situation like wrong input or no input.
प्रोग्राम को गलत इनपुट या बिना इनपुट जैसी अप्रत्याशित स्थिति को संभालने में सक्षम होना चाहिए।
Error
Expression
Portability
Reliability
Previous Question
Next Question
25
See Explanation !
19
It refers to the ability of an application to run on different platforms with or without minimal changes.
यह न्यूनतम परिवर्तनों के साथ या बिना विभिन्न प्लेटफार्मों पर चलाने के लिए एक एप्लिकेशन की क्षमता को संदर्भित करता है।
Error
Flexibility
Portability
Reliability
Previous Question
Next Question
25
See Explanation !
20
Python is a/an _________ language.
पायथन एक _________ भाषा है।
High Level
Low Level
Procedural
Difficult
Previous Question
Next Question
25
See Explanation !
21
Python uses a/an _______ to convert source code
पायथन स्रोत कोड को परिवर्तित करने के लिए एक/एक _______ का उपयोग करता है
Interpreter
Compiler
Combination of Compiler and Interpreter
all of these
Previous Question
Next Question
25
See Explanation !
22
Python code can run on a variety of platforms, it means Python is a _____ language.
पायथन कोड विभिन्न प्लेटफार्मों पर चल सकता है, इसका मतलब है कि पायथन एक _____ भाषा है।
Graphical
Cross-Platform
Platform Dependent
All of these
Previous Question
Next Question
25
See Explanation !
23
Python Programs are typed in
पायथन प्रोग्राम टाइप किए गए हैं
Interactive Mode
Script Mode
Both Interactive Mode or Script Mode
None of These
Previous Question
Next Question
25
See Explanation !
24
The ______ mode of Python gives instant result of typed statement
पायथन का ______ मोड टाइप किए गए कथन का तत्काल परिणाम देता है।
Interactive Mode
Script Mode
Combination of Interactive and Script modes
All of these
Previous Question
Next Question
25
See Explanation !
25
Which of the following is not a Python IDE
निम्नलिखित में से कौन पायथन आईडीई नहीं है
IDLE
Spyder
Jupyter Notes
Sublime Test
Previous Question