top of page
Search
Python program to calculate the factorial of a number
Write a Python function to calculate the factorial of a number (a non-negative integer). The function accepts the number as an argument....

Rajesh Singh
Feb 19, 20231 min read
327 views
1 comment
Python program accept a hyphen-separated sequence of words as input and prints the sorted words
This program is most for O Level practical Exam so read it carefully. Write a Python program that accepts a hyphen-separated sequence of...

Rajesh Singh
Feb 19, 20231 min read
869 views
2 comments
NumPy program to find the most frequent value in the list.
This program is most for O Level Practical Exam so read it carefully. Program: import numpy as np x = np.array([1,2,3,4,5,7,2,1,1,1,8,9,1...

Rajesh Singh
Feb 19, 20231 min read
143 views
0 comments
Python function that takes two lists and returns True if they have at least one common item.
This program is most for O Level Practical. Please read carefully. Program: def data(lst1, lst2): result = False for i in lst1: for j in...

Rajesh Singh
Feb 19, 20231 min read
233 views
0 comments
Python program to compute Fibonacci series using function.
This program is one of the best for O-Level Practical. Read it carefully. Program: def fab(x): if x<2: return 1 else: return...

Rajesh Singh
Feb 19, 20231 min read
61 views
0 comments
Python program to multiply two numbers by repeated addition
Program: a = int(input("Enter the first number: ")) b = int(input("Enter the second number: ")) product = 0 for i in range(b): product=...

Rajesh Singh
Feb 18, 20231 min read
1,087 views
0 comments
Python program to find the power of a number using recursion
Program: Hello Students this program is very useful for O Level Practical so read it carefully. def power(x,y): if y==0: return 1 else:...

Rajesh Singh
Feb 18, 20231 min read
36 views
0 comments
Python Program to Sort Python Dictionaries by Key or Value
Program: This program is most for practical Exam. So read carefully and understand: mydict = {'raj': 5, 'raja': 6, 'sanju': 7, 'mohan':...

Rajesh Singh
Feb 18, 20231 min read
41 views
0 comments
O Level Web designing and Publishing (M2R5) Previous Set 2023
1. Which one of the following is not used to generate daiming web page? A. PHP B. JSP C. ASP.Net D. None Answer: (D) 2. WWW is...

Rajesh Singh
Dec 31, 20229 min read
584 views
0 comments
Python Practice Set January 2023
1. The output of the following code. string=”my name is x” for i in string: print(i,end=”,”) A. m,y,,n,a,m,e,,i,s,x, B. ...

Rajesh Singh
Dec 26, 20227 min read
260 views
0 comments
IOT MCQ Questions
IOT MCQ Questions for O Level asked by NIELIT 1. What is the full form of IoT? A. Internet of Technology B. Incorporate of...

Rajesh Singh
Dec 5, 202210 min read
1,101 views
0 comments
Solution of (M3-R5) Python of August 2022 Exam
M3-R5: Programming and Problem Solving Through Python Language Set-01 Q1. Which is the following number can never be generated by the...

Rajesh Singh
Oct 20, 20229 min read
535 views
0 comments
UP PET Model Paper
UP PET Model Paper 1 Answer Key Model paper 1:

Rajesh Singh
Oct 9, 20221 min read
25 views
1 comment

Rajesh Singh
Oct 6, 20220 min read
128 views
0 comments
CSS MCQ Questions with Answer
CSS MCQ Q 1. What is CSS? a. CSS is a style sheet language b. CSS stands for Cascading style sheet. c. CSS is used to...

Rajesh Singh
Sep 14, 202210 min read
1,420 views
0 comments
HTML MCQ Questions & Answers
HTML MCQ: Q1. HTML Full form: a. HighText Machine Language b. HyperText and links Markup Language c. Hyper Text Marquee...

Rajesh Singh
Sep 8, 20225 min read
966 views
0 comments
Java Script Popup Box
Popup Box in Java Script There are three types popup box in java script which are below: Alert Dialog Box Confirmation Dialog Box Prompt...

Rajesh Singh
Sep 3, 20221 min read
54 views
0 comments
Switch Statement in Java Script
Switch Statement: A switch statement allows a variable to be tested for equality against a list of values. Each value is called a case...

Rajesh Singh
Aug 31, 20221 min read
91 views
0 comments
Asia Cup 2022
Asia Cup 2022 Asia Cup क्रिकेट टूर्नामेंटका 15वां संस्करणहोने वाला है, जिसके Match UEA मूलरूप से यहटूर्नामेंट सितंबर 2020 में आयोजितहोने...

Rajesh Singh
Aug 26, 20222 min read
34 views
0 comments
C Program for Traffic Light using Switch Case
C Program for Traffic Light #include <stdio.h> #include<conio.h> Void main () { char colour; printf ("Enter the colour of the light...

Rajesh Singh
Aug 26, 20221 min read
4,082 views
1 comment
bottom of page