top of page
Search
For Loop MCQ in Python
Q1. What is the output of the following Python code? x={1:"X",2:"Y",3:"Z"} for i,j in x.items(): print(i,j,end=" ") A. 1 X 2 Y 3 Z...
Rajesh Singh
Dec 15, 20244 min read
43 views
0 comments
Files MCQ in Python
File Processing MCQ Q1. Which function writes a list of lines in File? A. Writelines() B. Write() C. Tell() D. All of...
Rajesh Singh
Dec 2, 20245 min read
76 views
0 comments


Python List MCQ Questions
Q1. What is output of below python code? dict= {1:'1', 2:'2', 3:'3'} del dict[1] dict[1] = '10' del dict[2] print (len(dict)) A. 1 B. 2...
Rajesh Singh
Dec 1, 20244 min read
65 views
0 comments


Python NUMPY MCQ Questions
Python NumPy Chapter MCQ: 1. What will be print? Import numpy as np a = np. array([1,2,3,5,8]) b = np. array([0,3,4,2,1]) c = a+b c = c*a...
Rajesh Singh
Dec 1, 20244 min read
93 views
0 comments
Python Function MCQ Questions
Function Python Chapter MCQ Q1. Function keyword use (a). define (b). fun (c). def (d). function ...
Rajesh Singh
Nov 30, 20246 min read
4 views
0 comments


Python Function MCQ Questions
Function Python Chapter MCQ Q1. Function keyword use (a). define (b). fun (c). def (d). function ...
Rajesh Singh
Nov 30, 20246 min read
71 views
0 comments
Python MCQ Notes PDF in Hindi and English
Python MCQ Notes PDF in Hindi and English for O Level Exams Introduction to Programming and Algorithms & Flowcharts to Solve Problems...
Rajesh Singh
May 20, 20221 min read
1,689 views
0 comments
Tell function in python with example
Tell () function can be used to get the position of file handle and returns current position of file object where as Seek () function is...
Rajesh Singh
Feb 20, 20221 min read
89 views
0 comments
Seek function in python with example
Seek () function is used to change the position of the file handle to a given specific position in python. File handle such as a cursor...
Rajesh Singh
Feb 19, 20221 min read
55 views
0 comments
What is slicing and indexing in Python with examples?
Slicing is a Python attitude that enables accessing parts of data from the given sequence like list, tuples etc. A slice object is...
Rajesh Singh
Feb 17, 20222 min read
67 views
0 comments
O Level Python Programming Language (M3R5) Book & Notes PDF
Python Notes in Hindi: Introduction to Programming and Algorithms & Flowcharts Introduction to Python Chapter 3: Operators, Expression...
Rajesh Singh
Oct 17, 20211 min read
14,851 views
2 comments
What is difference between Compiler, Interpreter and Assembler?
Compiler: A Compiler is a program used in High level language to convert the low level language or machine code into binary information....
Rajesh Singh
Nov 10, 20201 min read
2,245 views
0 comments
Python Modules
A module is a file containing Python definitions and statements. A module can characterize functions, classes and variables. A module can...
Rajesh Singh
Apr 14, 20202 min read
136 views
0 comments

Scope of Objects and names in Python:
Scope refers to the coding region from which exacting Python object is accessible. So one cannot access any exacting object from...
Rajesh Singh
Apr 10, 20202 min read
909 views
0 comments
Command Line Arguments in Python
Command Line Arguments are the arguments that are specified after the name of the program in the command line shell of the operating...
Rajesh Singh
Apr 8, 20202 min read
102 views
0 comments
Python File Methods
A file object permits us to utilize, access and control all the user accessible files. One can read and write any such files. At the...
Rajesh Singh
Apr 6, 20203 min read
83 views
0 comments
What is a file in Python?
File is a named location on disk to store related information. It is used to permanently store data in a non-volatile memory. Firstly we...
Rajesh Singh
Apr 6, 20202 min read
21 views
0 comments
Local and Global Variables in Python
Local Variable In all-purpose, a variable that is defined in a block is available in that block only. It is not reachable outside the...
Rajesh Singh
Apr 6, 20203 min read
37 views
0 comments
What is Date & Time Functions in Python?
Date, time and datetime modules give a number of functions to contract with dates, times and time intervals in Python. We manipulate...
Rajesh Singh
Apr 3, 20202 min read
29 views
0 comments
What is recursion in Python with Examples?
Recursion is the process of defining something in terms of itself. A recursive function is a function defined in terms of itself via...
Rajesh Singh
Apr 3, 20202 min read
21 views
0 comments
bottom of page