top of page
Search
Rajesh Singh
Jul 6, 20238 min read
IOT Jan 2023 Exam Solved Paper
Q1. The purpose of communication is to help officials to -----------------the employees. A. Eliminate B. Motivate C. ...
1,749 views1 comment
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...
903 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,842 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...
218 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;...
85 views0 comments
bottom of page