top of page
Search
Python program to find square root of given number
Program: n=float(input("Enter a number: ")) a=n**.5 print("The square roots of given number is ", a) Output: Enter a number: 16 The...

Rajesh Singh
Jun 16, 20211 min read
31 views
0 comments


Python program to print series 1,4,9......15 terms
Program: for i in range(1,16): j=i*i print(j) Output: 1 4 9 16 25 36..................225 Python program to print series 1,4,9......15...

Rajesh Singh
May 23, 20211 min read
1,053 views
0 comments


Python program to print 10 even numbers in reverse order
Program: a=20 while a>=2: print(a) a=a-2 Output: 20 18 16 14 12 10 8 6 4 2 Python program to print 10 even numbers in reverse order Video:

Rajesh Singh
May 23, 20211 min read
8,617 views
0 comments


Python program to input principle amount, rate of interest and time and find to Simple interest.
Program: p=int(input("Enter the Principle Amount : ")) r=float(input("Enter the rate of interest : ")) t=int(input("Enter the Time Period...

Rajesh Singh
May 21, 20211 min read
45 views
0 comments


Python program to input temperature in Celsius and convert it into Fahrenheit.
Program: C=int(input("Enter the temperature in Celsius : ")) F=1.8*C+32 print("Temperature in Fahrenheit = ", F) Output: Enter the...

Rajesh Singh
May 21, 20211 min read
57 views
0 comments


Write a Python program to find average of three numbers
Program: a = int (input(" Please Enter the First Number: ")) b = int (input(" Please Enter the second number: ")) c = int (input(" Please...

Rajesh Singh
May 21, 20211 min read
40,431 views
0 comments


Time And Work Questions and Answer with short Tricks
Time And Work Tricks (1 to 8) of RS Agarwal Maths Time And Work Problem And Solution with Short Tricks (9-15) Of RS Agarwal Maths by...

Rajesh Singh
May 19, 20211 min read
30 views
0 comments


Profit and Loss questions and answers with short tricks video
Solution of Profits and Loss Questions with Trick of RS Agarwal Maths (1 to 7) Solution of Profits and Loss Questions with Trick of RS...

Rajesh Singh
Apr 22, 20211 min read
64 views
0 comments
NIELIT CCC Exam April 2024 Practice Test
Q. What are computer tools allows us to save data, information and programs into a computer? (A) Output device (B) Storage device (C)...

Rajesh Singh
Mar 30, 20215 min read
832 views
0 comments
Cheap Flights to Harare, Zimbabwe
Harare, a Majestic Destination Soaked in Pristine and Eye-Catching Prettiness Unquestionably, Africa has come to light as one of the...

Rajesh Singh
Feb 28, 20212 min read
10 views
0 comments
Python Function Program without input argument and without return value
This type of function does not have input arguments but has a value to the main program. Write a program to generate the following...

Rajesh Singh
Feb 24, 20211 min read
296 views
1 comment
Python program without input argument and with return value
This type of function does not have input arguments but has a value to return to the main program. Write a program to calculate and print...

Rajesh Singh
Feb 24, 20211 min read
36 views
0 comments
Python Function Program with argument and without return value
This type of function has one or more input arguments but does not have any value to return to the main program. Write a program to input...

Rajesh Singh
Feb 24, 20211 min read
1,807 views
1 comment
Python Function Program with input argument and with return value
This type of function has one or more input argument and also a value to return to the main program. Write a program to input a number...

Rajesh Singh
Feb 24, 20211 min read
14 views
0 comments
Python String Programs
Write a program to input a sentence and count the number of words in it. Program: s=input("Enter the sentence: ") k=0 for i in s: if...

Rajesh Singh
Feb 23, 20211 min read
28 views
0 comments
Pythons Library Math Functions Programs
Write a program to input the value of x and calculate the result of the following equation: ex +cos x+ √ X Program: import math...

Rajesh Singh
Feb 23, 20211 min read
23 views
0 comments
IoT Ecosystem
IoT Ecosystem user layer से connectivity layer तक शुरू होने वाले विभिन्न IoT layers का एक combination है। Industry ग्रेड IoT ecosystems...

Rajesh Singh
Feb 22, 20212 min read
69 views
0 comments
NIELIT CCC March 2024 Exam Practice Set
NIELIT CCC March Exam 2024 Practice Set Q1. Which protocol is used to upload and download file? (A) TCP (B) HTTP (C) FTP (D) SMTP Ans: C...

Rajesh Singh
Feb 16, 20214 min read
97 views
1 comment
NIELIT CCC March 2024 Exam Practice Set
NIELIT CCC March Exam 2024 Practice Set Q1. Which protocol is used to upload and download file? (A) TCP (B) HTTP (C) FTP (D) SMTP Ans: C...

Rajesh Singh
Feb 16, 20214 min read
471 views
0 comments
Libreoffice Impress shortcut keys
Function Keys for LibreOffice Impress Shortcut Keys Effect F2 Edit text. F3 ...

Rajesh Singh
Feb 13, 20212 min read
2,817 views
0 comments
bottom of page