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 3
25
See Explanation !
1
Which of the following is not a features of Python?
निम्नलिखित में से कौन पायथन की विशेषता नहीं है?
platform-independent
Low Level Language
Python is open-source and free to use
Object Oriented Programming
Next Question
25
See Explanation !
2
What is the extension of Python code File?
पायथन कोड फ़ाइल का विस्तार क्या है?
.py
.python
.ppt
.pyt
Previous Question
Next Question
25
See Explanation !
3
Python is ________ Programming Language
पायथन ________ प्रोग्रामिंग भाषा है
High Level
Object Oriented
Low Level
Both A and B
Previous Question
Next Question
25
See Explanation !
4
In which datatype we can store True/False type values
किस डेटाटाइप में हम सही/गलत प्रकार के मानों को संग्रहीत कर सकते हैं
Boolean
Integer
Float
String
Previous Question
Next Question
25
See Explanation !
5
Which is/are the valid statement to print Hello Word in Python ?
पायथन में Hello Word को प्रिंट करने के लिए मान्य कथन क्या है/हैं?
print('Hello Word')
print("Hello Word")
print(Hello Word)
Both A and B
Previous Question
Next Question
25
See Explanation !
6
Find the invalid variable among the following:
निम्नलिखित में से अमान्य चर खोजें:
1st_string
my_string_1
_mySring
Webskynet
Previous Question
Next Question
25
See Explanation !
7
What is the full form of IDLE in Python
पायथन में निष्क्रिय का पूर्ण रूप क्या है
Integrated Development and Learning Environment
Interpreted Development and Language Environment
Integrated Development and Language Environment
Integrated Designing and Language Environment
Previous Question
Next Question
25
See Explanation !
8
Which is Special type of literal in Python
जो पायथन में विशेष प्रकार का शाब्दिक है
Integer
Complex Number
None
String
Previous Question
Next Question
25
See Explanation !
9
What is mean by dynamically typed language
गतिशील रूप से टाइप की गई भाषा का क्या मतलब है
A variable can store any datatype type of value
A variable can store only numeric value
A variable can store only one type of value
A value of a variable is change each type when it run
Previous Question
Next Question
25
See Explanation !
10
In python we can change the value of variable
अजगर में हम चर का मान बदल सकते हैं
One Time
Two Time
Any Number of Time
we can not change the value of variable
Previous Question
Next Question
25
See Explanation !
11
in python a variable named 'num' ,which type of value we can store in this variable
अजगर में 'NUM' नामक एक चर, हम इस चर में किस प्रकार का मान संग्रहीत कर सकते हैं
Integer
Float
String
All of These
Previous Question
Next Question
25
See Explanation !
12
Raw data assigned to a variable is called as
एक चर को असाइन किए गए कच्चे डेटा को कहा जाता है
Variable
Literals
Identifiers
Comment
Previous Question
Next Question
25
See Explanation !
13
Which of the following is not a valid identifier?
निम्नलिखित में से कौन एक मान्य पहचानकर्ता नहीं है?
student
s12
123
_123
Previous Question
Next Question
25
See Explanation !
14
Which of the following is not a keyword ?
निम्नलिखित में से कौन सा एक कीवर्ड नहीं है?
eval
nonlocal
assert
finally
Previous Question
Next Question
25
See Explanation !
15
Which symbol is used to write single line comment ?
एकल पंक्ति टिप्पणी लिखने के लिए किस प्रतीक का उपयोग किया जाता है?
.
#
/
?
Previous Question
Next Question
25
See Explanation !
16
What is the output of the following code? a=set('abc') | b=set('cdef') | print(a&b)
निम्नलिखित कोड का आउटपुट क्या है? a=set(' abc ') | b=set(' cdef ') | print(a
{'c'}
{'a','b','c','d','e','r'}
{c}
None of these
Previous Question
Next Question
25
See Explanation !
17
Python supports the creation of anonymous functions at runtime, using a construct called
पायथन एक निर्माण का उपयोग करते हुए रनटाइम पर अनाम कार्यों के निर्माण का समर्थन करता है
pi
anonymous
lambda
none of the above
Previous Question
Next Question
25
See Explanation !
18
Which of the following words is not a keyword of python language?
निम्नलिखित में से कौन सा शब्द अजगर भाषा का कीवर्ड नहीं है?
val
raise
try
with
Previous Question
Next Question
25
See Explanation !
19
What will be the output of the following pseudo code, where & represent AND operation ? Integer a, b, c | Set b= 5, a = 1 | c= a & b | Print c
निम्नलिखित छद्म कोड का आउटपुट क्या होगा, जहाँ - Integer a, b, c | Set b= 5, a = 1 | c= a & b | Print c
1
3
5
7
Previous Question
Next Question
25
See Explanation !
20
function returns the current position of file pointer.
फ़ंक्शन फ़ाइल पॉइंटर की वर्तमान स्थिति बताता है।
get()
seek()
tell()
cur()
Previous Question
Next Question
25
See Explanation !
21
What will be the output of the following Python code? def power(x, y=2): r=1 for i in range(y): r=r*x return r print(power(3)) print(power(3,3))
निम्नलिखित पायथन कोड का आउटपुट क्या होगा? def power(x, y=2): r=1 for i in range(y): r=r*x return r print(power(3)) print(power(3,3))
212 32
9 27
567 98
None of the above
Previous Question
Next Question
25
See Explanation !
22
Which of the following variable declaration is incorrect?
निम्नलिखित में से कौन सा वेरिएबल डिक्लेरेशन गलत है?
a_=3
_a=3
a?=3
All of these
Previous Question
Next Question
25
See Explanation !
23
Which of the following data types is not supported in python?
पायथन में निम्नलिखित में से कौन सा डेटा प्रकार समर्थित नहीं है?
Number
String
List
Slice
Previous Question
Next Question
25
See Explanation !
24
Which character is used in Python to make a single line comment?
एक पंक्ति टिप्पणी करने के लिए पायथन में किस वर्ण का उपयोग किया जाता है?
/
//
#
!
Previous Question
Next Question
25
See Explanation !
25
In which language is Python written?
पायथन किस भाषा में लिखा जाता है?
English
PHP
C
All of the above
Previous Question