Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

SHREE NARAYANA ENGLISH MEDIUM SCHOOL, NARODA

Dear Students of Class:10th-D,

 We are going to arrange a Practical Session of Pre-Prelims for


Computer on 7-02-2024.
 All the students of class 10th-D must come to attend the Computer
Practical on time.
 Besides you must come to school in regular uniform only.
 Do not forget to bring the Computer Class work (C.W.)

Computer Practice Timing


Roll No Timing
1 to 24 8 a.m. to 9:30 a.m.
25 to 48 10 a.m. to 11:30 a.m.

 We are also going to conduct the Prelim Practical Examination for


Computer on 8-02-2024.
 All the students of class 10th-D must come to attend the Computer
Practical Exam on time.
 Besides you must come to school in regular uniform only.
 Do not forget to bring the Computer Class work (C.W.).
There will be no re-exam for the absentees at any cost.

Computer Practical Exam Timing


Roll No Timing
1 to 12 7:50 a.m. to 8:45 a.m.
13 to 24 8:50 a.m. to 9:45 a.m.
25 to 36 9:50 a.m. to 10:45 a.m.
37 to 48 10:50 a.m. to 11:45 a.m.
Practical Topics for Practice/Exam

Q1) Write a C program to calculate area of circle. (T.B. Page no - 238)


#include<stdio.h>
#include<conio.h>
#de�ine PI 3.14
void main ()
{
�loat radius,areaofcircle;
clrscr();
printf("Program is about Area of Circle \n");
printf("Enter the value of radius = ");
scanf("%f",&radius) ;
areaofcircle=PI*radius*radius;
printf("\n Area of Circle = %f",areaofcircle);
getch();
}
Q2) Write a C program to calculate the simple interest on a loan amount of Rs. P
taken at the rate of R % for N years. The values of P, R and N are to be speci�ied by
student. (T.B. Page no - 238)

#include<stdio.h>
#include<conio.h>
#de�ine PI 3.14
void main ()
{
�loat SI,principal,rate,noofyears;
clrscr();
printf("Program is about Simple Interest \n");
printf("Enter the value of Principal = ");
scanf("%f",&principal) ;
printf("\n Enter the value of rate = ");
scanf("%f",&rate) ;
printf("\n Enter the value of no of years = ");
scanf("%f",&noofyears) ;
SI=(principal*rate*noofyears)/100;
printf("\n Simple Interest = %f",SI);
getch();
}
Q3) Write a HTML program of an ordered list. (T.B. Page no - 59)

<html>
<head>
<title> Ordered List in HTML </title>
</head>

<body>
<font color ="Blue">
<h1>An ordered list:
</font>

<ol>
<font size="6">
<b>
<li> Chocolates </li>
<li> lce-creams </li>
<li> Dry fruits </li>
</b>
</font>
</ol>

</body>
</html>
Q4) Check whether entered number is odd or even. (T.B. Page no - 269)

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int number;
prin�("Enter the number ");
scanf("%d",&number);
if(number%2==0)
{
prin�(" Number is Even ");
}
else
{
prin�(" Number is odd ");
}
getch();
}

*************COMPLETED*************

You might also like