top of page
Search
Rajesh Singh
Dec 15, 20244 min read
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...
43 views
0 comments
Rajesh Singh
Dec 2, 20245 min read
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...
68 views
0 comments


Rajesh Singh
Dec 1, 20244 min read
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...
64 views
0 comments


Rajesh Singh
Dec 1, 20244 min read
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...
92 views
0 comments
Rajesh Singh
Nov 30, 20246 min read
Python Function MCQ Questions
Function Python Chapter MCQ Q1. Function keyword use       (a). define       (b).  fun       (c).  def       (d).  function        ...
4 views
0 comments


Rajesh Singh
Nov 30, 20246 min read
Python Function MCQ Questions
Function Python Chapter MCQ Q1. Function keyword use       (a). define       (b).  fun       (c).  def       (d).  function        ...
46 views
0 comments
Rajesh Singh
May 20, 20221 min read
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...
1,682 views
0 comments
Rajesh Singh
Feb 20, 20221 min read
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...
89 views
0 comments
Rajesh Singh
Feb 19, 20221 min read
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...
55 views
0 comments
Rajesh Singh
Feb 17, 20222 min read
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...
67 views
0 comments
Rajesh Singh
Oct 17, 20211 min read
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...
14,647 views
2 comments
Rajesh Singh
Nov 10, 20201 min read
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....
2,245 views
0 comments
Rajesh Singh
Apr 14, 20202 min read
Python Modules
A module is a file containing Python definitions and statements. A module can characterize functions, classes and variables. A module can...
136 views
0 comments

Rajesh Singh
Apr 10, 20202 min read
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...
909 views
0 comments
Rajesh Singh
Apr 8, 20202 min read
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...
102 views
0 comments
Rajesh Singh
Apr 6, 20203 min read
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...
83 views
0 comments
Rajesh Singh
Apr 6, 20202 min read
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...
21 views
0 comments
Rajesh Singh
Apr 6, 20203 min read
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...
37 views
0 comments
Rajesh Singh
Apr 3, 20202 min read
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...
29 views
0 comments
Rajesh Singh
Apr 3, 20202 min read
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...
21 views
0 comments
bottom of page