top of page
Search
O Level Internet of Things(IOT) (M4-R5) Book | Notes PDF in Hindi
Introduction to Internet of Things Application Chapter 1: Things and Correction Chapter 2: Sensor, Actuator and Micro controller Chapter...

Rajesh Singh
Nov 22, 20211 min read
O Level Internet of Things(IOT) (M4-R5) Book | Notes PDF in English
IOT Notes in English :

Rajesh Singh
Nov 5, 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...

Rajesh Singh
Oct 17, 20211 min read
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
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
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
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
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
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
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
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
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
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
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
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



Rajesh Singh
Jun 20, 20210 min read
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
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
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
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
bottom of page




