Python program to compute Fibonacci series using function.
top of page
Search
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 18, 20231 min
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=...
882 views0 comments
Rajesh Singh
Feb 18, 20231 min
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:...
30 views0 comments
Rajesh Singh
Feb 18, 20231 min
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':...
33 views0 comments
Rajesh Singh
Dec 31, 20229 min
O Level Web designing and Publishing (M2R5) Practice 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...
404 views0 comments
Rajesh Singh
Dec 26, 20227 min
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. ...
253 views0 comments
Rajesh Singh
Dec 5, 20227 min
IOT MCQ Test Paper
1. What is the full form of IoT? A. Internet of Technology B. Incorporate of Things C. Internet of Things D. ...
836 views0 comments
Rajesh Singh
Oct 20, 20229 min
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...
467 views0 comments
Rajesh Singh
Oct 9, 20221 min
UP PET Model Paper
UP PET Model Paper 1 Answer Key Model paper 1:
25 views1 comment
Rajesh Singh
Sep 14, 20225 min
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,156 views0 comments
Rajesh Singh
Sep 8, 20223 min
HTML MCQ Questions & Answers
HTML MCQ: Q1. HTML Full form: a. HighText Machine Language b. HyperText and links Markup Language c. Hyper Text Marquee...
541 views0 comments
Rajesh Singh
Sep 3, 20221 min
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...
52 views0 comments
Rajesh Singh
Aug 31, 20221 min
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...
84 views0 comments
Rajesh Singh
Aug 26, 20222 min
Asia Cup 2022
Asia Cup 2022 Asia Cup क्रिकेट टूर्नामेंटका 15वां संस्करणहोने वाला है, जिसके Match UEA मूलरूप से यहटूर्नामेंट सितंबर 2020 में आयोजितहोने...
34 views0 comments
Rajesh Singh
Aug 26, 20221 min
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,530 views1 comment
Rajesh Singh
Aug 16, 20221 min
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...
197 views0 comments
Rajesh Singh
Aug 16, 20221 min
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
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;...
82 views0 comments
bottom of page