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
CSS
Javascript
Python
Practical Questions
New!
Log in
Sign Up
O Level Papers!
M3 R5: Programming and Problem Solving through Python
Set
25
See Explanation !
1
Which of the following variable declaration is incorrect?
निम्नलिखित में से कौन सा वेरिएबल डिक्लेरेशन गलत है?
a_=3
_a=3
a?=3
All of these
Next Question
25
See Explanation !
2
Which operator is used in Python to import modules from packages?
पैकेज से मॉड्यूल आयात करने के लिए पायथन में किस ऑपरेटर का उपयोग किया जाता है?
.
*
->
&
Previous Question
Next Question
25
See Explanation !
3
The Python prompt indicates that Interpreter is ready to accept instruction.
पाइथन प्रॉम्प्ट इंगित करता है कि दुभाषिया निर्देश स्वीकार करने के लिए तैयार है।
>>>
<<<
#
<<
Previous Question
Next Question
25
See Explanation !
4
Which operator is used for bitwise OR in Python?
पायथन में बिटवाइज या के लिए किस ऑपरेटर का उपयोग किया जाता है?
|
||
or
&
Previous Question
Next Question
25
See Explanation !
5
What will the following code output? print(ord(‘A’))
निम्नलिखित कोड आउटपुट क्या होगा? print(ORD (' A '))
65
97
32
67
Previous Question
Next Question
25
See Explanation !
6
An algorithm that calls itself directly or indirectly is called as
एक एल्गोरिथ्म जो खुद को प्रत्यक्ष या अप्रत्यक्ष रूप से कॉल करता है, उसे कहा जाता है
Sub Function
Recursion
Reverse Polish Notation
Traversal Algorithm
Previous Question
Next Question
25
See Explanation !
7
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 !
8
The default separator character of print() is ___
Print() का डिफ़ॉल्ट विभाजक वर्ण ___ है
tab
space
newline
dot
Previous Question
Next Question
25
See Explanation !
9
What does pip stand for python ?
पाइथन का अर्थ क्या है?
unlimited length.
all private members must have leading and trailing underscores.
Preferred Installer Program.
none of the mentioned
Previous Question
Next Question
25
See Explanation !
10
What will be the output of the following Code ? x=10, y=3 print(divmod(x,y))
निम्नलिखित कोड का आउटपुट क्या होगा? x=10, y=3 print(divmod(x,y))
(3,1)
(4,2)
(5,7)
(1,3)
Previous Question
Next Question
25
See Explanation !
11
The Compexity of linear search algorithm is
रैखिक खोज एल्गोरिथ्म की संयोजकता है
O(n)
O (log n)
O(n2)
O (n log n)
Previous Question
Next Question
25
See Explanation !
12
The GCD of the numbers 136 and 170 is ______ .
136 और 170 संख्याओं का GCD ______ है।
34
40
50
None
Previous Question
Next Question
25
See Explanation !
13
A step by step method for solving a problem using English Language
अंग्रेजी भाषा का उपयोग करके किसी समस्या को हल करने के लिए चरण - दर - चरण विधि
program
Flowchart
statement
Algorithm
Previous Question
Next Question
25
See Explanation !
14
What will be the output of the following expression? a = 2 b = 8 print(a|b ) print(a >> 1)
निम्नलिखित कोड का परिणाम क्या है ? a = 2 b = 8 print(a|b ) print(a >> 1)
10 0
10 2
2 2
10 1
Previous Question
Next Question
25
See Explanation !
15
What will be the result of the following expression in Python “2 ** 3 + 5 ** 2”?
पायथन में निम्नलिखित अभिव्यक्ति "2 ** 3 + 5 ** 2" का परिणाम क्या होगा?
65536
33
169
None of the above
Previous Question
Next Question
25
See Explanation !
16
What will be the output of following code? print(“5”+5)
निम्नलिखित कोड का आउटपुट क्या होगा? print(" 5 "5)
55
10
5
Type Error
Previous Question
Next Question
25
See Explanation !
17
What are the attributes of numpy array?
Numpy सरणी के गुण क्या हैं?
shape, dtype, ndim
objects, type, list
objects, non vectorization
Unicode and shape
Previous Question
Next Question
25
See Explanation !
18
What is a correct method to join two or more arrays?
दो या दो से अधिक सरणियों में शामिल होने का सही तरीका क्या है?
np.concatenate()
np.join()
np.array_join()
np.join_array()
Previous Question
Next Question
25
See Explanation !
19
In which format python file considered
पाइथन फ़ाइल को किस प्रारूप में माना जाता है
giga bytes
mega bytes
byte
bits
Previous Question
Next Question
25
See Explanation !
20
How do you import NumPy in Python?
आप Python में NumPy कैसे इम्पोर्ट करते हैं?
import numpy as np
import numPy
from python import numpy
using numpy
Previous Question
Next Question
25
See Explanation !
21
_____ reads one entire line from the file.
_____ फ़ाइल से एक पूरी पंक्ति पढ़ता है।
readline()
read()
readinglines()
None of these
Previous Question
Next Question
25
See Explanation !
22
What will be the output of the following Python code? x = 'abcd' for i in range(len(x)): print(i.upper())
निम्नलिखित पायथन कोड का आउटपुट क्या होगा? x = 'abcd' for i in range(len(x)): print(i.upper())
a b c d
0 1 2 3
error
1 2 3 4
Previous Question
Next Question
25
See Explanation !
23
Which is/are the the valid string value in Python
पायथन में मान्य स्ट्रिंग मान कौन सा है/हैं
"12345"
"@#$%"
"Rajesh"
All of These
Previous Question
Next Question
25
See Explanation !
24
The scope rule in Python are summarized as____.
पायथन में स्कोप नियम को ____ के रूप में संक्षेप में प्रस्तुत किया गया है।
ELGB ( enclosed, local,global, built-in).
LEGB (local, enclosed,global, built-in ).
Both of the above
None of these
Previous Question
Next Question
25
See Explanation !
25
What will the following code output? print(2 << 2)
निम्नलिखित कोड आउटपुट क्या होगा? print(2 << 2)
4
8
16
32
Previous Question