top of page
Search
Rajesh Singh
Dec 153 min read
For Loop MCQs 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...
7 views0 comments
Rajesh Singh
Dec 24 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...
27 views0 comments
Rajesh Singh
Dec 14 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...
32 views0 comments
Rajesh Singh
Dec 14 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...
50 views0 comments
Rajesh Singh
Nov 304 min read
Python Function MCQ Questions
Function Python Chapter MCQ Q1. Function keyword use (a). define (b). fun (c). def (d). function ...
17 views0 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,541 views0 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...
86 views0 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...
54 views0 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...
65 views0 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...
12,044 views2 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 views0 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...
135 views0 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...
908 views0 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...
101 views0 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...
82 views0 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...
20 views0 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...
36 views0 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...
27 views0 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...
20 views0 comments
Rajesh Singh
Apr 3, 20202 min read
What is Function Arguments in Python
A function that takes variable number of arguments in Python. Example: def tkd(name,msg): print("Hello",name + ', ' + msg)...
22 views0 comments
bottom of page