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
Set
25
See Explanation !
1
Which one is not a built in function
कौन सा एक अंतर्निहित फ़ंक्शन नहीं है
dictionary()
set()
tuple()
list()
Next Question
25
See Explanation !
2
Which one of the following is inmmutable data type?
निम्नलिखित में से कौन सा अपरिवर्तनीय डेटा प्रकार है?
list
set
tuple
dict
Previous Question
Next Question
25
See Explanation !
3
Python operator always yields the result of
पायथन ऑपरेटर हमेशा का परिणाम देता है
integer
floating point
complex
all of these
Previous Question
Next Question
25
See Explanation !
4
What is the maximum possible length of an identifier for better redability? -
बेहतर रीडेबिलिटी के लिए एक पहचानकर्ता की अधिकतम संभव लंबाई क्या है? -
31 characters
63 characters
No limit but 79 characters for better redability
All of the above.
Previous Question
Next Question
25
See Explanation !
5
What will be the output of the following Python code? x = 'abcd' for i in range(len(x)): print(i)
निम्नलिखित पायथन कोड का आउटपुट क्या होगा? x = 'abcd' for i in range(len(x)): print(i)
a b c d
0 1 2 3
error
1 2 3 4
Previous Question
Next Question
25
See Explanation !
6
what will the output of following code my_string="Hello,world" print(my_string[-6:-1])
निम्नलिखित कोड का आउटपुट क्या होगा my_string ="हैलो,वर्ल्ड" प्रिंट(my_string [-6:-1])
,worl
worl
world
oworld
Previous Question
Next Question
25
See Explanation !
7
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 !
8
A Python tuple that is created without using the parentheses brackets () is called as ?
एक पायथन टपल जिसे कोष्ठक कोष्ठक () का उपयोग किए बिना बनाया जाता है, को कहा जाता है?
Tuple packing
Tuple sampling
Tuple sorting
None of the above
Previous Question
Next Question
25
See Explanation !
9
Which of the following is not an immutable type in Python ?
निम्नलिखित में से कौन पायथन में एक अपरिवर्तनीय प्रकार नहीं है?
String
Tuples
Set
None of these
Previous Question
Next Question
25
See Explanation !
10
In a flow chart, which of the following is used to test the condition ?
फ्लो चार्ट में, स्थिति का परीक्षण करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
Terminal
Process
Input/Output
Decision
Previous Question
Next Question
25
See Explanation !
11
What will be the output of the following Python code? for i in range(0): print(i)
निम्नलिखित पायथन कोड का आउटपुट क्या होगा? for i in range(0): print(i)
0
no output
error
none of the mentioned
Previous Question
Next Question
25
See Explanation !
12
A Python module is a file with the __________ file extension that contains valid Python code.
एक पायथन मॉड्यूल __________ फाइल एक्सटेंशन वाली एक फाइल है जिसमें वैध पायथन कोड होता है।
.pym
.pymodule
module
.py
Previous Question
Next Question
25
See Explanation !
13
If a={5,6,7,8}, which of the following statements is false?
यदि a = {5,6,7,8}, निम्नलिखित में से कौन सा स्टेट्मेंट गलत है?
print(len(a))
print(min(a))
a.remove(5)
a[2]=45
Previous Question
Next Question
25
See Explanation !
14
Which of the following mode will refer to binary data?
निम्न में से कौन सा मोड बाइनरी डेटा को संदर्भित करेगा?
r
w
+
b
Previous Question
Next Question
25
See Explanation !
15
What will be the output of the following Python code? values = [[3, 4, 5, 1], [33, 6, 1, 2]] v = values[0][0] for row in range(0, len(values)): for column in range(0, len(values[row])): if v < values[row][column]:
निम्नलिखित पायथन कोड का आउटपुट क्या होगा? values = [[3, 4, 5, 1], [33, 6, 1, 2]] v = values[0][0] for row in range(0, len(values)): for column in range(0, len(values[row])): if v < values[row][column]: v
3
5
6
33
Previous Question
Next Question
25
See Explanation !
16
PVM is often called
PVM को अक्सर कहा जाता है
Python Interpreter.
Python compiler
Python Volatile machine
Portable virtual machine
Previous Question
Next Question
25
See Explanation !
17
Give the output of: print(2^5)
इसका आउटपुट क्या होगा : print(2^5)
32
7
10
3
Previous Question
Next Question
25
See Explanation !
18
What will be the output of the following Python code? i = 2 while True: if i%3 == 0: break print(i) i += 2
निम्नलिखित पायथन कोड का आउटपुट क्या होगा? i = 2 जबकि सही: यदि i%3 == 0: break print(i) i = 2
2 4 6 8 10 …
2 4
2 3
error
Previous Question
Next Question
25
See Explanation !
19
What is the output of below program ? def say(message, times =1): print(message * times) say("Hello") say("Word",5)
निम्नलिखित पायथन कोड का आउटपुट क्या होगा? def say(message, times =1): print(message * times) say("Hello") say("Word",5)
Hello WordWordWordWordWord
Hello Word 5
Hello Word,Word,Word,Word,Word
Hello HelloHelloHelloHelloHello
Previous Question
Next Question
25
See Explanation !
20
What will be the value of X in the following Python expression? x = 2+9*((3*12)-8)/10
निम्नलिखित पायथन व्यंजक में X का मान क्या होगा? x = 2 9*((3*12 )-8 )/ 10
30.0
30.8
28.4
27.2
Previous Question
Next Question
25
See Explanation !
21
To give a default separator with print() argument is used.
Print() तर्क के साथ एक डिफ़ॉल्ट विभाजक देने के लिए उपयोग किया जाता है।
sep
separator
end
tab
Previous Question
Next Question
25
See Explanation !
22
..........design approach starts by dividing the complex algorithm into one or more modules.
..........डिजाइन दृष्टिकोण जटिल एल्गोरिथ्म को एक या अधिक मॉड्यूल में विभाजित करके शुरू होता है।
Top-Down
Down-Top
Both of the above
None of the above
Previous Question
Next Question
25
See Explanation !
23
Which type of Error generate, when the argument have invalid values specified?
किस प्रकार की त्रुटि उत्पन्न होती है, जब तर्क में अमान्य मान निर्दिष्ट होते हैं?
Value Error
Syntax Error
Logical Error
None of these
Previous Question
Next Question
25
See Explanation !
24
Which one of the following is not attributes of file?
निम्नलिखित में से कौन सा फाइल का ऐट्रीब्यूट नहीं है?
closed
softspace
rename
None of the above.
Previous Question
Next Question
25
See Explanation !
25
What is a correct method to split arrays?
सरणियों को विभाजित करने का सही तरीका क्या है?
array_split()
split()
split_array()
hstack() and vstack()
Previous Question