top of page
Search
Rajesh Singh
May 21, 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...
44 views0 comments
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...
56 views0 comments
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...
38,845 views0 comments
Rajesh Singh
May 19, 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...
29 views0 comments
Rajesh Singh
Apr 22, 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...
63 views0 comments
Rajesh Singh
Mar 30, 20215 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)...
718 views0 comments
Rajesh Singh
Feb 28, 20212 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...
10 views0 comments
Rajesh Singh
Feb 24, 20211 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...
295 views1 comment
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...
36 views0 comments
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...
1,763 views1 comment
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...
13 views0 comments
Rajesh Singh
Feb 23, 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...
27 views0 comments
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...
19 views0 comments
Rajesh Singh
Feb 22, 20212 min read
IoT Ecosystem
IoT Ecosystem user layer से connectivity layer तक शुरू होने वाले विभिन्न IoT layers का एक combination है। Industry ग्रेड IoT ecosystems...
66 views0 comments
Rajesh Singh
Feb 16, 20214 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...
88 views1 comment
Rajesh Singh
Feb 16, 20214 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...
462 views0 comments
Rajesh Singh
Feb 13, 20212 min read
Libreoffice Impress shortcut keys
Function Keys for LibreOffice Impress Shortcut Keys Effect F2 Edit text. F3 ...
2,791 views0 comments
Rajesh Singh
Feb 5, 20211 min read
Python File Programs
Write a program to create a text file of students to store Roll No., Name and three subject marks obtained by the students in a class of...
40 views1 comment
Rajesh Singh
Dec 31, 20205 min read
NIELIT CCC Exam January 2024 Practice Set
Q. Bold, italic, underline are found in which menu in LibreOffice Writer? (A) Style (B) Format (C) Edit (D) Insert Ans: B Q. Intersection...
340 views2 comments
bottom of page