top of page
Search
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...
212 views0 comments
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...
51 views0 comments
Rajesh Singh
Feb 18, 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=...
936 views0 comments
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:...
33 views0 comments
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':...
34 views0 comments
Rajesh Singh
Dec 31, 20229 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...
517 views0 comments
Rajesh Singh
Dec 26, 20227 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. ...
257 views0 comments
Rajesh Singh
Dec 5, 202210 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...
989 views0 comments
Rajesh Singh
Oct 20, 20229 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...
514 views0 comments
Rajesh Singh
Oct 9, 20221 min read
UP PET Model Paper
UP PET Model Paper 1 Answer Key Model paper 1:
25 views1 comment
Rajesh Singh
Oct 6, 20220 min read
127 views0 comments
Rajesh Singh
Sep 14, 202210 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...
1,331 views0 comments
Rajesh Singh
Sep 8, 20225 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...
810 views0 comments
Rajesh Singh
Sep 3, 20221 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...
54 views0 comments
Rajesh Singh
Aug 31, 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...
86 views0 comments
Rajesh Singh
Aug 26, 20222 min read
Asia Cup 2022
Asia Cup 2022 Asia Cup क्रिकेट टूर्नामेंटका 15वां संस्करणहोने वाला है, जिसके Match UEA मूलरूप से यहटूर्नामेंट सितंबर 2020 में आयोजितहोने...
34 views0 comments
Rajesh Singh
Aug 26, 20221 min read
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...
3,888 views1 comment
Rajesh Singh
Aug 16, 20221 min read
C Program to find nCr using Recursion
C Program to find nCr: #include<stdio.h> #include<conio.h> int fact(x) { int i, f=i; for(i=1;i<=x;i++) { f=f*i; } return(f); } void...
245 views0 comments
Rajesh Singh
Aug 16, 20221 min read
C Program to Multiply two Matrices
Matrix multiplication in C: #include<stdio.h> #include<conio.h> void main() { int a[15][15],b[15][15],c[15][15],row, col, i, j, k;...
9 views0 comments
Rajesh Singh
Aug 13, 20222 min read
Pyramids and Patterns Programs in C
1. Half Pyramid of * programs in C * * * * * * * * * * * * * * * Program: #include <stdio.h> #include<conio.h> void main() { int i, j;...
86 views0 comments
bottom of page