top of page
Search
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
15,857 views
2 comments
Python Program to Convert Decimal to Binary using recursive function
def decitobin(n): if n > 1: decitobin(n // 2) print(n % 2,end='') num = int(input("Enter any decimal number: ")) decitobin(num) Output:...

Rajesh Singh
Oct 12, 20211 min read
116 views
0 comments
Java Script program to add, subtraction,multiplication, division and modulus of two Numbers
<html> <head> <title> Java Script program to add, subtraction,multiplicaion and division of two Numbers</title> <script...

Rajesh Singh
Oct 4, 20211 min read
458 views
8 comments
Java Script program to find simple interest
<html> <head> <title> form event</title> <script language="javascript"> function si(fnm) { P=fnm.t1.value R=fnm.t2.value T=fnm.t3.value...

Rajesh Singh
Oct 3, 20211 min read
170 views
0 comments
Python Program to find Sum of Series 1**3 + 2**3 + ................... + n**3
Program: n = int(input("Enter Positive Number : ")) sum = 0 sum= ((n*n)*(n+1)*(n+1))/4 print("The Sum of Series is",sum) Output: Enter...

Rajesh Singh
Sep 28, 20211 min read
81 views
0 comments
Python Program to Find Sum of Series 1²+2²+3²+….+n²
The mathematical formula to find the sum of 1²+2²+3²+….+n² is n(n+1)(2n+1)/6 So to find the sum of series we use this formula. Program:...

Rajesh Singh
Sep 28, 20211 min read
603 views
0 comments
If else if statement in Java Script with Examples
If Statement: If statement is execute when condition is true. If condition is not satisfied then statement is not execute. It means we...

Rajesh Singh
Sep 23, 20211 min read
217 views
0 comments
O Level Web Designing and Publishing book(M2R5) | Notes pdf
Introduction to Web Designing, Editor and HTML Chapter Notes : HTML MCQ on https://www.careerbodh.in/post/html-mcq CSS Notes PDF: CSS MCQ...

Rajesh Singh
Sep 21, 20211 min read
12,764 views
2 comments
O Level Web Designing and Publishing book(M2R5) | Notes pdf
Introduction to Web Designing, Editor and HTML Chapter Notes : CSS Notes PDF: CSS Frame Work: Java Script Notes in Hindi Photo Editor and...

Rajesh Singh
Sep 21, 20211 min read
24 views
0 comments
O Level IT Tools and Network Basics (M1-R5) Book | Notes PDF
Introduction to Computer Introduction to Operating System: Word Processing: SpreadSheet: Libre Office Impress: Internet, Bank and AI...

Rajesh Singh
Sep 21, 20211 min read
15,651 views
0 comments
O Level Python (M3-R5) Model Paper 2021
TOTAL TIME: 3 HOURS TOTAL MARKS: 100 (PART ONE: 40; PART TWO: 60) PART ONE (Answer all the questions; each question carries one mark)...

Rajesh Singh
Aug 17, 20213 min read
1,925 views
0 comments
UPSSSC PET Syllabus 2021
Subjects: Indian History(5) Indus valley civilization Vedic civilization Buddhism Jainism Mauryan empire Gupta empire Harshavardhan...

Rajesh Singh
Jul 6, 20211 min read
41 views
0 comments
NIELIT CCC Exam July 2024 Practice Test Paper
Q. What is the width of column in LibreOffice Calc? (A) .18 (B) .89 (C) 1.2 (D) .72 Ans: B Q. KYC Full form is? (A) Know your Customer...

Rajesh Singh
Jul 2, 20213 min read
753 views
1 comment



Rajesh Singh
Jun 20, 20210 min read
32 views
0 comments
Python program to add one or more element in List
Program: #Append() is used for adding one element in List at the end of list. X=[9,18,27] X.append(36) print(X) output: [9, 18, 27, 36]...

Rajesh Singh
Jun 20, 20211 min read
53 views
0 comments
Python program to remove elements of a given list
Program: n=[9,18,27,36,45,54,63] print("List=",n) i=int(input("Enter the position of elements to delete : ")) del n[i] print("List after...

Rajesh Singh
Jun 18, 20211 min read
23 views
0 comments
Python program to create a list of 5 numbers
Python program to create a list of 5 numbers. Numbers entered by User. n=[] for i in range(5): j=int(input("Enter number: ")) n.append(j)...

Rajesh Singh
Jun 17, 20211 min read
678 views
0 comments
Python program to find minimum value in List
Program: list=[(1,15,11), (4,7,1), (7,11,2),(10,10,18)] print("The list is: " +str(list)) res1=min(list)[0] res2=min(list)[1]...

Rajesh Singh
Jun 16, 20211 min read
48 views
0 comments
Python program to find maximum value in List
Program: list=[(1,15,11), (4,7,1), (7,11,2),(10,10,18)] print("The list is: " +str(list)) res1=max(list)[0] res2=max(list)[1]...

Rajesh Singh
Jun 16, 20211 min read
38 views
0 comments
Python program convert kilometers to miles
Program: n=float(input("Enter value in kilometers: ")) a=n*.621371 print("The miles of given kilometers is %.2f" %a) Output: Enter value...

Rajesh Singh
Jun 16, 20211 min read
36 views
0 comments
bottom of page