top of page
Search
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
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
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


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


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


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


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


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


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


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
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
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
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
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
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
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
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
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
IoT Ecosystem
IoT Ecosystem user layer से connectivity layer तक शुरू होने वाले विभिन्न IoT layers का एक combination है। Industry ग्रेड IoT ecosystems...

Rajesh Singh
Feb 22, 20212 min read
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
bottom of page




