top of page
Search
IOT Jan 2023 Exam Solved Paper
Q1. The purpose of communication is to help officials to -----------------the employees. A. Eliminate B. Motivate C. ...

Rajesh Singh
Jul 6, 20238 min read
Top Delhi Attractions
Red Fort The Red Fort is a verifiable stronghold in the national capital of New Delhi. Situated in the focal point of the city, it was...

Rajesh Singh
Jun 28, 20233 min read
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
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
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
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
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
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
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
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
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
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
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
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
UP PET Model Paper
UP PET Model Paper 1 Answer Key Model paper 1:

Rajesh Singh
Oct 9, 20221 min read

Rajesh Singh
Oct 6, 20220 min read
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
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
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
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
bottom of page




