Result Sample Templete in MS WORD
Result Sample Templete in MS WORD
OF SCIENCE
PROJECT WORK OF
COMPUTER SCIENCE
Submi Submi
tted tted to:
by: Name:
Name: Roshan
Suvanja Dangi
n Prasai Departm
KATHMANDU, NEPAL
2024
Submitted by:
Suvanjan Prasai
Under Supervision of
Roshan Dangi
Global
School
Of
science
Mid
Certificate
This is to certify that Mr./Ms. has successfully completed his/her
project work as per the requirement of the curriculum of
GRADE-XI (Computer Science) under National Education
Board, Nepal. He/ She has completed his/her project work
within the prescribed period.
NEB Symbol no/Registration no.:
Internal Externa
Examin l
Date: April 5, 2024
Ms- 11
W 15
or 23
d 35
B. 82
Ms- 83
xc
A MS-Word
Ms-Word Experiment 4
B Ms-Excel
Ms-Excel Experiment 4
C Ms-PowerPoint
Ms-PowerPoint Experiment 1
D HTML/ CSS
Heading Tag 1
Text Formatting/ Character 1
Formatting
Font Tag 1
Inserting Image 1
Inserting Audio/ Video 1
Hyperlink 1
Inserting table 1
List Tag 2
Form Tag 1
Simple Program 7
I/O function in C 3
If statement 1
If … else statement 3
If…else if statement 3
Switch case 3
For loop 3
While loop 3
Do…while loop 3
Break statement 1
Continue statement 1
Go to statement 1
Array 6
String Function 7
CONGRATULATI
ONS
Dear Ram,
Congratulations on your outstanding achievement! Becoming the top scorer in the board
exams is no small feat, and your hard work and dedication have truly paid off.
May this success be the stepping stone to a bright future filled with even greater
accomplishments. Keep shining, keep striving, and keep making us proud!
Warm regards,
Suvanjan Prasai
Suvanjan Prasai
Experience
2015–2019
IT Engineer• Senior Developer • Esewa
2019–2020
IT Engineer• HOD • Daraz
2020–2023
It Engineer• Senior Engineer • Meta
9860051561 Education
St. Joseph Secondary School, Biratnagar, Morang
education@suvanjanpras I have scored 3.65 as grade point average on the recent SEE
ai.com.np examination conducted by NEB.
Communication
Excellent written and verbal communication skills
Confident, articulate, and professional speaking abilities (and
experience)
Empathic listener and persuasive speaker
Writing creative or factual
Speaking in public, to groups, or via electronic media
Excellent presentation and negotiation skills
suvanjanprasai.com.np
Leadership
Able to lead others in high-demand situations
Coaching, guiding, or tacking
Delegating tasks or responsibilities
Demonstrated leadership
Evaluating performance, programs, processes, or events
HAPPY
BIRTHDA
Y
MONDAY, 1
7`O APRIL
CLOCK IN THE
EVENING
BASUKI MARG, BANESHWOR
STUD
ENT
Name: Suvanjan Prasai Grade: 11
Section: Q
Date: 05/04/2024
Math 40 100 92
Computer 40 100 96
Chemistry 40 100 86
Physics 40 100 93
English 40 100 84
Nepali 40 100 82
Teacher’s Feedback:
_______________________________________________________________________________
_______________________________________________________________________________
Formula:
Total: =SUM (B2:G2)
Percentage: =H2/600*100
Remark: =IF(AND(B2>=40, C2>=40, D2>=40,
E2>=40),"Pass”, “Fail")
Process:
1. Open Excel and create a new spreadsheet.
2. Enter the dates you want to include in the calendar in one column.
3. In another column, label each date with the corresponding day of the week using Excel's
"Weekday" function.
4. Format the cells to display as dates and days of the week, adjusting fonts and colors as
desired.
5. Use conditional formatting or other tools to highlight specific dates, holidays, or events
on the calendar.
Process:
1. Open Excel and create a new spreadsheet.
2. Designate columns for item description, quantity, unit price, total price, and any
additional fields you need.
3. Input your billing items and their respective details into the designated columns.
4. Use formulas to calculate the total price for each item and the overall bill total.
5. Format the bill template for clarity and professionalism, including company logo, contact
information, and any necessary legal disclaimers.
Process:
1. Open Excel and create a new spreadsheet.
2. Label columns for Name, Roll Number, Class, Guardians, and Fees Due.
3. Enter student information into the respective columns, including their name, roll number,
class, guardians' names, and any fees due.
4. Format the spreadsheet for clarity, using borders and headers to distinguish columns.
5. Utilize Excel's sorting and filtering functions to easily manage and update the student
database as needed.
Characteristics:
1. Markup language
2. Platform-Independent
3. Text-Based-Format
4. Semantics
5. Extensible
6. Integration with other technologies
1.Heading tag
In HTML, the <h1> to <h6> tags are used to define headings of different levels,
ranging from the most important <h1> to the least important <h6>. These tags are part
of the semantic markup in HTML and are used to structure and organize content on a
web page.
<!DOCTYPE html>
<html>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
Font tag
<!DOCTYPE html>
<head>
<title>Document</title>
</head>
<body>
<font face="Cursive" size="6"> Did you see it ? </font>
</body>
</html>
Inserting Image
<!DOCTYPE html>
<html>
<body>
<h2>Watch Out</h2>
<img src="https://media.istockphoto.com/id/637696304/photo/patan.jpg?
s=612x612&w=is&k=20&c=wesFCvNKd9X0yQ6jdGuAG-mqMICB1dI_B21Ac9PwWFY="
alt="W3Schools.com" >
</body>
</html>
Inserting Audio/ Video
<!DOCTYPE html>
<head>
<title>Document</title>
</head>
<body>
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
</video>
</body>
</html>
Hyperlink
<!DOCTYPE html>
<html>
<body>
<h1>HTML Links</h1>
</body>
</html>
HTML Table
HTML tables are used to organize and display data in rows and columns on a web
page. They are created using the <table>, <tr>, <th>, and <td> elements.
<!DOCTYPE html>
<html>
<style>
table, th, td {
border:1px solid black;
}
</style>
<body>
<table style="width:100%">
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Mega</td>
<td>Maria Anders</td>
<td>Nepal</td>
</tr>
<tr>
<td>Derex</td>
<td>Harry Bing</td>
<td>USA</td>
</tr>
</table>
</body>
</html>
LIST TAG
<!DOCTYPE html>
<html>
<body>
<ol>
<li>Lamborghini</li>
<li>Ferrari</li>
<li>Mercedes-Benz</li>
</ol>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</body>
</html>
HTML Form
HTML forms are used to collect user input on a web page. They
allow users to enter data such as text, numbers, selections, and
more, which can then be submitted to a server for processing.
<!DOCTYPE html>
<html>
<body>
<h2>HTML Forms</h2>
<form action="/action_page.php">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="Elon"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Musk"><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
CSS
CSS, which stands for Cascading Style Sheets, is a style sheet
language used to define the presentation and layout of HTML
(or XML) documents. It allows web developers to control the
appearance of web pages, including aspects such as colors,
fonts, spacing, and positioning.
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
body {background-color: black;}
h1 {color: yellow;}
p {color: red;}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
<!DOCTYPE html> style.css
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body> body {
backgroun
<h1>Using External CSS</h1> d-color:
<p>MRX</p>
powderblu
</body> e;
</html> }
h1 {
color:
blue;
style.css
C programming
Simple Program
1. //First C program
#include <stdio.h>
int main() {
printf("Hello World!");
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
int main() {
double num1, num2, sum;
printf("Enter first number: ");
scanf("%lf", &num1);
printf("Enter second number: ");
scanf("%lf", &num2);
sum = num1 + num2;
printf("Sum = %.2lf\n", sum);
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
int main() {
double radius, area, circumference;
const double PI = 3.14159;
Output:
int main() {
double length, width, area;
Output:
int main() {
int a, b, temp;
printf("Enter two integers: ");
scanf("%d %d", &a, &b);
printf("Before swapping: a = %d, b = %d\n", a, b);
temp = a;
a = b;
b = temp;
printf("After swapping: a = %d, b = %d\n", a, b);
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
int main() {
double principal, rate, time, simple_interest;
Output:
int main() {
double base, height, area;
return 0;
}
Output:
I/O function in C
int main() {
int num;
printf("Enter an integer: ");
scanf("%d", &num);
printf("You entered: %d\n", num);
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
int main() {
char str[100];
printf("Enter a string: ");
fgets(str, sizeof(str), stdin);
printf("You entered: ");
fputs(str, stdout);
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
output:
3. // USing fetchar() and putchar() functions
#include <stdio.h>
int main() {
char ch;
printf("Enter a character: ");
ch = getchar();
printf("You entered: ");
putchar(ch);
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
IF
In C programming, the if statement is a fundamental control structure
used for decision-making. It allows you to execute a block of code
conditionally based on the evaluation of a boolean expression.
int main() {
int num;
Output:
If … else statement
In C programming, the if-else statement is a powerful control structure
that allows you to execute different blocks of code based on the
evaluation of a boolean expression.
int main() {
int num;
if (num >= 0) {
printf("%d is a positive number.\n", num);
} else {
printf("%d is a negative number.\n", num);
}
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
2. //WAP to find greatest among two numbers
#include <stdio.h>
int main() {
int num1, num2;
output:
int main() {
int age;
Output:
If…else if statement
int main() {
int num1, num2, num3;
return 0;
}
Output:
2.//WAP to determine the sign of a integer.
#include <stdio.h>
int main() {
int num;
if (num > 0) {
printf("Positive number\n");
} else if (num < 0) {
printf("Negative number\n");
} else {
printf("Zero\n");
}
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
int main() {
int age;
printf("Enter your age: ");
scanf("%d", &age);
return 0;
}
output:
1. #include <stdio.h>
int main() {
int age;
char gender;
output:
Switch case
In C programming, the switch statement provides a way to
control flow based on the value of a variable or expression. It's
an alternative to using multiple if-else statements when you
have multiple conditions to evaluate against the same variable.
int main() {
char ch;
printf("Enter a character: ");
scanf(" %c", &ch);
switch(ch) {
case 'a':
case 'e':
case 'i':
case 'o':
case 'u':
case 'A':
case 'E':
case 'I':
case 'O':
case 'U':
printf("%c is a vowel.\n", ch);
break;
default:
printf("%c is a consonant.\n", ch);
}
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
output:
int main() {
char operator;
double num1, num2, result;
switch(operator) {
case '+':
result = num1 + num2;
printf("Result: %.2lf\n", result);
break;
case '-':
result = num1 - num2;
printf("Result: %.2lf\n", result);
break;
case '*':
result = num1 * num2;
printf("Result: %.2lf\n", result);
break;
case '/':
if (num2 != 0) {
result = num1 / num2;
printf("Result: %.2lf\n", result);
} else {
printf("Error: Division by zero\n");
}
break;
default:
printf("Invalid operator\n");
}
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
int main() {
int day;
printf("Enter a number (1-7): ");
scanf("%d", &day);
switch(day) {
case 1:
printf("Sunday\n");
break;
case 2:
printf("Monday\n");
break;
case 3:
printf("Tuesday\n");
break;
case 4:
printf("Wednesday\n");
break;
case 5:
printf("Thursday\n");
break;
case 6:
printf("Friday\n");
break;
case 7:
printf("Saturday\n");
break;
default:
printf("Invalid input\n");
}
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
output:
FOR loop
In C programming, the for loop is a control flow statement used
to execute a block of code repeatedly for a fixed number of
times. It's particularly useful when you know the exact number
of iterations you want to perform.
1. //WAP to program to print from 1 to 5
#include <stdio.h>
int main() {
printf("Numbers from 1 to 5:\n");
for (int i = 1; i <= 5; ++i) {
printf("%d\n", i);
}
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
2.//WAP to find Factorial of number
#include <stdio.h>
int main() {
int num;
int factorial = 1;
output:
int main() {
int num;
printf("Enter a number: ");
scanf("%d", &num);
output:
While loop
int main() {
int count = 5;
printf("Countdown from 5 to 1:\n");
while (count >= 1) {
printf("%d\n", count);
count--;
}
printf("Blast off!\n");
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
2. //WAP to find sum of numbers from 1 to 100.
#include <stdio.h>
int main() {
int sum = 0, num = 1;
Output:
int main() {
int num = 2;
Output:
Do…while loop
int main() {
int sum = 0, num = 1;
do {
sum += num;
num++;
} while (num <= 50);
printf("Sum of numbers from 1 to 50: %d\n", sum);
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
output:
2.//WAP to print odd number from 1 to 10.
#include <stdio.h>
int main() {
int num = 1;
Output:
int main() {
int num, factorial = 1, i = 1;
do {
factorial *= i;
i++;
} while (i <= num);
output:
BREAK STATEMENT
int main() {
for (int i = 1; i <= 10; ++i) {
printf("%d\n", i);
if (i == 5) {
break;
}
}
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
output:
Continue STATEMENT
In C programming, the continue statement is used within loops
to skip the rest of the code in the current iteration and proceed to
the next iteration of the loop. When the continue statement is
encountered, the control flow immediately jumps back to the
beginning of the loop, skipping any remaining statements within
the loop body.
int main() {
for (int i = 1; i <= 10; ++i) {
if (i % 2 != 0) {
continue;
}
printf("%d\n", i);
}
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
Output:
Go to statement
int main() {
int num = 1;
start:
printf("Current value of num: %d\n", num);
num++;
if (num <= 5) {
goto start;
}
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
output:
ARRAY
int main() {
int numbers[] = {10, 20, 30, 40, 50};
int sum = 0;
output:
int main() {
int numbers[] = {10, 20, 30, 40, 50};
int max = numbers[0];
output
int main() {
int numbers[] = {10, 20, 30, 40, 50};
output:
int main() {
int numbers[] = {10, 21, 30, 45, 50};
return 0;
}
output:
int main() {
int numbers[] = {10, 20, 30, 40, 50};
int sum = 0;
output:
6. //Reverse string
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello";
int length = strlen(str);
output:
int main() {
int numbers[] = {10, 20, 30, 20, 40, 20, 50};
int target = 20;
int count = 0;
return 0;
}
output:
String Function
1. //String length
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
int length = strlen(str);
printf("Length of the string: %d\n", length);
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
output:
int main() {
char source[] = "Hello";
char destination[20];
strcpy(destination, source);
printf("Copied string: %s\n", destination);
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}
output:
int main() {
char str1[] = "Hello";
char str2[] = " World!";
strcat(str1, str2);
printf("Concatenated string: %s\n", str1);
printf("\n***Coded By:Rajendra Prasad
Joshi***");
return 0;
}
int main() {
char str1[] = "Hello";
char str2[] = "Hello";
if (strcmp(str1, str2) == 0) {
printf("Strings are equal.\n");
} else {
printf("Strings are not equal.\n");
}
printf("\n***Coded By:Rajendra Prasad
Joshi***");
return 0;
}
output:
7. //WAP
//WAP tothat
count characters
checks whetherinit string
contains a substring: Output:
output:
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
int main() { {
int main()
char str[20] ;
char str[100];
int count
char= 0;
substring[100];
printf("Enter a string: ");
scanf("%s",&str);
printf("Enter a string: ");
scanf("%s", str);
for (int i = 0; i < strlen(str); ++i) {
if (str[i] != ' ') { a substring to search for: ");
printf("Enter
count++; substring);
scanf("%s",
}
} if (strstr(str, substring) != NULL) {
printf("Number of characters
printf("'%s' in '%s': %d\n",
contains '%s'.\n", str, count);
str, substring);
printf("\n***Coded
} else { By:Rajendra Prasad Joshi***");
return 0;
printf("'%s' does not contain '%s'.\n", str,
} substring); }
printf("\n***Coded By:Rajendra Prasad Joshi***");
return 0;
}