Oxford
Oxford
PU COLLEGE
#68,
OUTPUT 1 :
PROGRAM – 01
#include<iostream.h>
#include<conio.h>
class frequency
{
private:
int a[100];
int n,ele,f,i;
public:
OUTPUT 2 : void input( );
void compute( );
void output( );
};
void frequency::input( )
{
cout<<"Enter thenumber ofelements in the array : ";
cin>>n;
cout<<"Enter the array elements : ";
for(i=0;i<n;i++)
cin>>a[i];
cout<<"Input the element to find the frequency :";
cin>>ele;
}
void frequency::compute( )
{
f=0;
Unruled side Ruled side
for( i=0;i<n;i++)
if(ele==a[i])
f++;
}
void frequency::output( )
{
if(f>0)
cout<<ele<<" occurs "<<f<<" times ";
else
cout<<ele<<" does not exist ";
}
void main( )
{
frequency obj;
clrscr( );
obj.input( );
obj.compute( );
obj.output( );
getch( );
}
Unruled side Ruled side
PROGRAM – 02
Output 1:
/* Write a C++ program to insert an element into an array ata
given position */
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
class insertion
{
private :
int a[100],element,pos,n,i;
Output 2:
public:
void input( );
void compute( );
void output( );
};
void insertion::input( )
{
cout<<"Inputnoofelements:"<<endl;
cin>>n;
cout<<"Input array elements : "<<endl;
for(i=0;i<n;i++)
cin>>a[i];
cout<<"Enter the element to be inserted : ";
cin>>element;
cout<<"Input position of the element in the array : ";
cin>>pos;
}
Unruled side Ruled side
void insertion::compute( )
{
if(pos>=n)
{
cout<<"Position isout ofarray limits ";
getch();
exit(0);
}
else
{
for(i=n;i>pos;i--)
a[i]=a[i-1];
a[pos]=element;
n=n+1;
}
}
void insertion::output( )
{
cout<<"Array elements after insertion : "<<endl;
for(i=0;i<n;i++)
cout<<a[i]<<"\t";
}
void main()
{
insertion obj;
clrscr( );
obj.input ();
obj.compute( );
obj.output( );
getch( );
}
Unruled side Ruled side
PROGRAM – 03
OUTPUT 1 :
/* write a program to delete an element from an array at a given
position */
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
class deletion
{
private : int a[100],element,pos,n,i;
public:
OUTPUT 2 : void input ( );
void compute( );
void output ( );
};
void deletion :: input( )
{
cout<<" Input number of elements : "<<endl;
cin>>n;
cout<<"Input array elements : "<<endl;
for(i=0;i<n;i++)
cin>>a[i];
cout<<"Enter theposition of the element to be deleted : ";
cin>>pos;
}
getch( );
exit(0);
}
else
{
element=a[pos];
for(i=pos;i<n-1;i++)
a[i]=a[i+1];
n=n-1;
}
}
void main( )
{
deletion obj;
clrscr( );
obj.input ( );
obj. compute ( );
obj.output( );
getch( );
}
Unruled side Ruled side
OUTPUT 1 : PROGRAM – 04
#include<iostream.h>
#include<conio.h>
class sort
{
private:
int a[100],i,n;
public
void input( );
void compute( );
void output( );
};
void sort :: input( )
{
cout<<"Enterthenumberofelements:";
cin>>n;
cout<<"Enter array elements : ";
for(i=0;i<n;i++)
cin>>a[i];
}
void sort :: compute( )
{
int temp,j;
for(i=0;i<n;i++)
{
j=i;
while(j>=1)
{
Unruled side Ruled side
if(a[j]<a[j-1])
{
temp=a[j];
a[j]=a[j-1];
a[j-1]=temp;
}
j=j-1;
}
}
}
void sort :: output( )
{
for(i=0;i<n;i++)
cout<<a[i]<<"\t"<<"\n";
}
void main( )
{
sorrt s;
clrscr( );
s.input( );
cout<<"Unsorted list is : "<<endl;
s.output( );
s. compute();
cout<<"Sorted list is : "<<endl;
s.output( );
getch( );
}
Unruled side Ruled side
OUTPUT 1 : PROGRAM – 05
#include<iostream.h>
#include<conio.h>
class search
{
private:
int a[100],ele,loc,n,i;
public:
void input( );
void compute( );
OUTPUT 2 :
void output( );
};
void search :: input( )
{
cout<<"Enter the number of elements :";
cin>>n;
cout<<"Enter array elements :";
for(i=0;i<n;i++)
cin>>a[i];
cout<<"Enter the search element";
cin>>ele;
}
high=n-1;
while(low<=high)
{
mid=(low+high)/2;
if(ele==a[mid])
{
loc=mid;
break;
}
else
if(ele<a[mid])
high=mid-1;
else
low=mid+1;
}
}
OUTPUT 1 : PROGRAM – 06
#include<iostream.h>
#include<conio.h>
class simpleinterest
{
private:
double principle,rate,time,si;
public:
void input()
{
cout<<" Input principle amount:";
cin>>principle;
cout<<" Input number of years : ";
cin>>time;
cout<<"Input rate of interest:";
cin>>rate;
}
void compute ( )
{
si=principle*rate*time/100;
}
void output ( )
{
cout<<"Simple interest = "<<si;
}
};
Unruled side Ruled side
void main( )
{
simpleinterest s;
clrscr( );
s.input( );
s.compute( );
s.output( );
getch( );
}
Unruled side Ruled side
OUTPUT 1 : PROGRAM – 07
#include<iostream.h>
#include<conio.h>
#include<math.h>
class quadratic
{
private :
int a, b, c;
OUTPUT 3 : float disc, x1, x2 ;
public :
void input ( )
{
cout<< "Input values for a,b, and c:";
cin>> a >> b >> c ;
}
void compute ( )
{
disc = b * b - 4 * a * c;
if (disc==0 )
{
cout<< "Roots are equal " <<endl ;
x1 = - b / (2*a);
Unruled side Ruled side
x2 = x1;
}
else
if(disc > 0)
{
cout<<"Real & Distinct roots"<<endl;
x1=(- b + sqrt (disc) ) / (2 * a);
x2=(- b - sqrt (disc) ) / (2 * a);
}
else
cout<<"Roots are imaginary"<<endl;
}
void output ( )
{
cout<< "Root 1 is " << x1 <<endl;
cout<< "Root 2 is " << x2 <<endl;
}
};
void main()
{
quadratic q;
clrscr();
q.input();
q.compute();
q.output();
getch();
}
Unruled side Ruled side
PROGRAM – 08
OUTPUT 1 :
/* Program to find the area of square/rectangle/triangle using
function overloading concept */
#include<iostream.h>
#include<conio.h>
#include<math.h>
class fun
{
private:
float s;
OUTPUT 2 : public:
int area (int a)
{
return (a *a);
}
int area(int l, int b)
{
return (l *b);
}
float area(float a, float b, float c)
{
OUTPUT 3 : s=(a+b+c)/2;
return(sqrt(s* (s-a) * (s-b) * (s-c) ));
}
};
void main()
{
fun f;
clrscr();
int num;
Unruled side Ruled side
PROGRAM – 09
OUTPUT 1 :
/* Program to find the cube of a number using inline function */
#include<iostream.h>
#include<conio.h>
class assign
{
private :
int n;
public :
OUTPUT 2 :
assign(int num)
{
n = num;
}
int cube();
};
void main()
{
clrscr();
int number;
cout<<"Enter a num : "<<endl;
cin>>number;
assign f=number;
cout<<"Cube of a number is : "<< f.cube();
getch();
}
Unruled side Ruled side
PROGRAM – 10
OUTPUT 1 :
/*Write a program to find the sum of the series 1 + x + x2 + x3+. .
. . + xn using constructor*/
# include <iostream.h>
# include <math.h>
# include <conio.h>
class series
{
OUTPUT 2 :
private:
int sum, n, x;
public:
series ( )
{
sum =1 ;
}
void input( )
{
cout<<"InputN(numberofterms)value:";
cin>> n ;
cout<< "Input X value " ;
cin>> x;
}
void compute( )
{
int i;
for (i=1;i<=n;i++)
sum = sum + pow (x,i) ;
}
Unruled side Ruled side
void output( )
{
cout<<"Sum = "<< sum;
}
};
void main ( )
{
series p;
clrscr();
p.input ();
p. compute( );
p. output( );
getch( );
}
Unruled side Ruled side
PROGRAM – 11
OUTPUT 1 :
/* Create a base class containing the data members roll No. and
name. Also create a member function to read and output the
data using single level inheritance. Create a derived class that
contains marks of 2 subjects and total marks as the data
members*/
#include<iostream.h>
#include<conio.h>
class student
{
private:
int rno;
char name[20];
OUTPUT 2 :
public :
void input()
{
cout<<"Input roll number:";
cin>>rno;
cout<<"Input name of the student:";
cin>> name ;
}
};
class report : public student
{
private :
int marks1,marks2,total ;
public :
void inputmarks()
{
cout<<"Enter Subject1 marks:";
cin>>marks1;
cout<<"Enter Subject 2 marks:";
Unruled side Ruled side
cin>>marks2;
}
void compute()
{
total=marks1+marks2;
cout<<endl<<"Total Marks = "<<total;
}
};
void main()
{
report r;
clrscr();
r.input();
r.inputmarks();
r.compute();
getch();
}
Unruled side Ruled side
PROGRAM – 12
OUTPUT 1:
/* Create a class containing the following data members
Enter regno,name,fee register no,name and fees. Create a member function to read
101 and output the data using the concept of pointers to objects*/
Chandana
20000 #include<iostream.h>
#include<conio.h>
Register no: 101
Name : Chandana class student
Fees :20000 {
private :
int regno, fees;
OUTPUT 2: char name[15];
void main( )
{
student s,*sp;
Unruled side Ruled side
clrscr( );
sp=&s;
sp->input();
sp->output();
getch( );
}
Unruled side Ruled side
PROGRAM – 13
OUTPUT :
Stack operations /* Program to push the element into the stack */
1. Push operation
2. display stack elements # include <iostream.h>
3. Exit # include <conio.h>
Enter your choice # include <stdlib.h>
1 # define max 10
Input element to insert
25 class stack
{
Stack operations protected : int s[max] ;
1. Push operation int top ;
2. display stack elements public :stack( )
3. Exit {
Enter your choice top= -1 ;
1 }
Input element to insert void push (int ele)
36 {
if (top == max-1)
Stack operations cout << "Stack is is full”<<endl;
1. Push operation else
2. display stack elements top++ ;
3. Exit s[top] = ele ;
Enter your choice
1
Input element to insert }
10 void display ( )
{
int i;
cout << "Stack elements"<<endl;
for(i=top;i>=0;i--)
Unruled side Ruled side
cout<<s[i]<<endl;
Stack operations
1. Push operation }
2. display stack elements };
3. Exit
Enter your choice void main ( )
2 {
Stack elements stack s;
10 clrscr();
36 int choice, element ;
25 while (1)
{
Stack operations cout << "Stack operations"<<endl;
1. Push operation cout << "1. Push operation"<<endl ;
2. display stack elements cout << "2. display stack elements" <<endl;
3. Exit cout << "3. Exit" <<endl;
Enter your choice cout<<endl;
3 cout << "Enter your choice" ;
End of Stack operations cin >> choice ;
switch (choice)
{
case 1: cout << "Input element to insert ";
cin >>element ;
s.push(element) ;
break;
case 2: s.display( );
break ;
case 3: cout<<"End of Stack operations" ;
exit (1);
}
}
getch();
}
Unruled side Ruled side
OUTPUT: Program No 14
Stack operations {
1. Push operation int ele=s[top];
2. Pop operation top--;
3. Display stack elements cout<<"Popped element is"<< ele;
4. Exit }
Enter your choice }
2 void display ( )
Popped element is 5 {
int i;
Stack operations cout << "Stack elements"<<endl;
1. Push operation for(i=top;i>=0;i--)
2. Pop operation cout<<s[i]<<endl;
3. Display stack elements }
4. Exit };
Enter your choice
2 void main ( )
Popped element is 12 {
stack s;
Stack operations clrscr();
1. Push operation int choice, element ;
2. Pop operation while (1)
3. Display stack elements {
4. Exit cout << "Stack operations"<<endl;
Enter your choice cout << "1. Push operation"<<endl ;
2 cout << "2. Pop operation" <<endl;
Stack is empty cout << "3. Display stack elements" <<endl;
cout << "4. Exit" <<endl;
Stack operations cout<<endl;
1. Push operation cout << "Enter your choice" ;
2. Pop operation cin >> choice ;
3. Display stack elements switch (choice)
4. Exit {
Enter your choice
Unruled side Ruled side
OUTPUT Program 15
/*Program to perform enqueue and dequeue */
Queue Operations:
1. Add Item # include <iostream.h>
2. Delete Item # include <conio.h>
3. Display Contents # include<stdlib.h>
4. Exit # define n 5
Enter your choice:1 class queue
Input an element to insert {
protected : int q[n] ;
35
int front, rear;
public: queue( )
Queue Operations:
{
1. Add Item
front = -1;
2. Delete Item rear = -1;
3. Display Contents }
4. Exit void qinsert (int item)
Enter your choice:1 {
Input element to insert if (rear==n-1)
45 {
cout << "Queue is full"<<endl;
Queue Operations: }
1. Add Item else if(rear==-1)
2. Delete Item {
front=0 ;
3. Display Contents
rear=0;
4. Exit
q[rear]=item;
Enter your choice:3 }
The Queue contents is: else
q[0]=35 {
q[1]=45 rear ++;
Unruled side Ruled side
OUTPUT Program No 16
#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
class linklist
{
struct node
{
int data;
node *link;
} *start;
public: linklist( );
void print( );
void append(int num);
void count( );
};
linklist::linklist( )
{
start = NULL;
}
void linklist::print( )
{
if(start == NULL)
{
cout<<"Linklist is empty"<<endl;
}
else
{
Unruled side Ruled side
node *temp;
temp = start;
while(temp!=NULL)
{
cout<<temp->data<<endl;
temp=temp->link;
}
}
}
void linklist::append(int num)
{
node *newnode;
newnode = new node;
newnode -> data=num;
newnode->link=NULL;
if(start==NULL)
{
start=newnode;
}
else
{
node *temp;
temp=start;
while(temp->link!= NULL)
{
temp=temp->link;
}
temp->link=newnode;
cout<<num<<"is inserted"<<endl;
}
}
void linklist::count( )
{
Unruled side Ruled side
node *temp;
int c=0;
for(temp=start;temp!=NULL;temp=temp->link)
c++;
cout<<"Linklist contains "<<c<<"elements"<<endl;
}
void main( )
{
linklist *li = new linklist();
clrscr( );
li->append(100);
li->print( );
li->count( );
li->append(200);
li->print( );
li->count( );
li->append(300);
li->print( );
li->count( );
getch( );
}
STRUCTURED QUERY LANGUAGE
PROBLEM 1
Create a table for house hold Electricity Bill with the following fields.
iii. Compute the Bill amount for each customer as per the following rules
MIN_AMOUNT Rs.100/-
First 100 Units Rs.4.25/- per Unit
> 100 Units Rs.5/- per Unit
To insert 10 records into the table EBILL use the following INSERT INTO
commands
SQL > INSERT INTO EBILL VALUES (‘EH 1003’, ‘ARUN KUMAR’, ’12-MAR-14’, 98) ;
SQL > INSERT INTO EBILL VALUES (‘EH 2005’, ‘NAVEEN’, ’18-FEB-14’, 108) ;
SQL > INSERT INTO EBILL VALUES (‘EH 2007’, ‘VARUN’, ’28-APR-14’, 157) ;
SQL > INSERT INTO EBILL VALUES (‘EH 3009’, ‘PINKY’, ’28-APR-14’, 77) ;
SQL > INSERT INTO EBILL VALUES (‘EH 3010’, ‘SOORI’, ’08-APR-14’, 198) ;
SQL > INSERT INTO EBILL VALUES (‘EH 3013’, ‘MD ALI’, ’23-MAR-14’, 68) ;
SQL > INSERT INTO EBILL VALUES (‘EH 3017’, ‘JACOB’, ’03-MAR-14’, 132) ;
SQL > INSERT INTO EBILL VALUES (‘EH 3033’, ‘DRUVA’, ’28-APR-14’, 127) ;
SQL > INSERT INTO EBILL VALUES (‘EH 3037’, ‘KUMAD’, ’08-APR-14’, 87) ;
SQL > INSERT INTO EBILL VALUES (‘EH 3041’, ‘DRUTHI’, ’05-APR-14’, 137) ;
To store all the records permanently in the EBILL table use the following COMMIT
command:
SQL >COMMIT ;
To show the contents of the table EBILL use the following SELECT command:
OR
iii. Compute the bill amount for each customer as per the rules.
i. Add records into the table CLASS for 10 students for ID_NO, S_NAME and marks in 6
subjects using INSERT command
ii. Display the description of the fileds in the table using DESC command.
iii. Calculate TOTAL and PERC_MARKS
iv. Compute the RESULT as “PASS” or “FAIL” by checking if the student has scored more
than 35 marks in each subject
v. List the contents of the table.
vi. Retrieve all the records of the table.
vii. Retrieve only ID_NO and S_NAME of all the students.
viii. List the students who have result as “PASS”.
ix. List the students who have result as “FAIL”.
x. Count the number of students who have passed.
xi. Count the number of students who have failed.
xii. List the students who have percentage greater than 60.
xiii. Sort the table according to the order of ID_NO
Solution: First we have to create the table TABLE CLASS using CREATE TABLE
command
i. Add records into the table CLASS for 10 students for ID_NO, S_NAME and
marks in 6 subjects using INSERT command
SQL> INSERT INTO CLASS VALUES (1401, ‘PAWAN’ , 56, 36, 56, 78, 44, 67) ;
SQL> INSERT INTO CLASS VALUES (1411, ‘RAJESH’, 100, 100, 96, 100, 100, 100) ;
SQL> INSERT INTO CLASS VALUES (1412, ‘KARAN’, 60, 30, 45, 45, 36, 49);
SQL> INSERT INTO CLASS VALUES (1403, ‘MAYA’, 56, 60, 72, 57, 78, 67);
SQL> INSERT INTO CLASS VALUES (1410, ‘GUNA’, 96, 99, 97, 9, 78, 100);
SQL> INSERT INTO CLASS VALUES (1401, ‘MANISHA’, 30, 45, 39, 20, 33, 56);
SQL> INSERT INTO CLASS VALUES (1406, ‘MARTIN’, 79., 65, 79, 79, 89, 88);
SQL> INSERT INTO CLASS VALUES (1405, ‘SATHYA’, 100, 90, 100, 89, 90, 100);
SQL> INSERT INTO CLASS VALUES (1404, ‘ULLAS’, 35, 30, 78, 23, 44, 70);
SQL> INSERT INTO CLASS VALUES (1407, ‘SOORI’, 100, 100, 100, 99, 98, 100);
i.Display the description of the fields in the table using DESC command.
OR
iv. Compute the RESULT as “PASS” or “FAIL” by checking if the student has scored more
than 35 marks in each subject.
xii. List the students who have percentage greater than 60.
Create the following table EMPLOYEE for the ABC Ltd. With the following structure:
Assume the department name as PURCHASE(ID_01), ACCOUNTS(ID_02), SALES(ID_03) and APPRENTICE(ID_04). Enter 10 rows
of data for table EMPLOYEE and 4 rows of data for DEPARMTMENT table.
i. Find the names of the employees who work for the accounts department?
ii. How many employees work for accounts department?
iii. What are the minimum, maximum and average salary of employees working for accounts department?
iv. List the employees working for a particular supervisor.
v. Retrieve the department names for each department where only one employee works.
vi. Increase the salary of all employees in the sales department by 15%.
vii. Add a new columns to the table employee called Bonus number(5) and compute 5% of the salary to the said field.
viii. Delete all the news for employees in the apprentice department.
SOLUTION: First we have to create two tables EMPLOYEE and DEPARTMENT
To insert 10 records into the table EMPLOYEE use the following INSERT INTO commands:
SQL > INSERT INTO EMPLOYEE VALUES (101, 01, ‘ARUN’, 15000);
SQL > INSERT INTO EMPLOYEE VALUES (104, 02, ‘SUMAN’, 20000);
SQL > INSERT INTO EMPLOYEE VALUES (105, 03, ‘ANURAG’, 22000);
SQL > INSERT INTO EMPLOYEE VALUES (106, 04, ‘KOUSHIK’, 18000);
SQL > INSERT INTO EMPLOYEE VALUES (109, 01, ‘MARRY’, 22300);
SQL > INSERT INTO EMPLOYEE VALUES (110, 02, ‘AKASH’, 15000);
SQL > INSERT INTO EMPLOYEE VALUES (107, 03, ‘VARUN’, 21300);
SQL > INSERT INTO EMPLOYEE VALUES (102, 04, ‘KOMAL’, 18200);
SQL > INSERT INTO EMPLOYEE VALUES (103, 02, ‘RAM’, 24000);
SQL > INSERT INTO EMPLOYEE VALUES (108, 02, ‘USHA’, 12000);
To insert 4 records into the table DEPARTMENT use the following INSERT INTO
commands :
Use the following SELECT command to list all the records of the table EMPLOYEE :
Use the following SELECT command to list all the records of the table DEPARTMENT :
i. Find the names of all employees who work for the ACCOUNTS
department
iii. What are the minimum maximum and average salary of employees working for
ACCOUNTS department?
vi. Increase the salary of all employees in the ‘SALES’ department by 15%.
vii. Add a new column to the table employee called BOUNS of type NUMBER(5) and compute
5% of the salary to the said field.
To compute 5% BONUS for each employee on the EMP_SALARY we use the following UPDATE
command :
Create the following table BANK DATABASE for the ABC bank with the following structure
i. Find the names of all customer whose balance amount is more than Rs.30000/-
ii. How many customer whose balance amount is less than the minimum in the account (assume that minimum balance is Rs.1000/ -?
iii. Perform the transaction on T_TYPE (Deposit or withdrawal).
iv. Display the transaction on a particular day.
v. Display all the records of CA account.
Solution: First we have to create the table BANK_DATABASE using CREATE TABLE
command :
i.Find the names of all customer whose balance amount is more than Rs.30000?
ii. How many customers whose balance amount is less than the minimum in the account?
(assume that minimum balance is Rs.1000/)
<HTML>
<BODY>
<CENTER><H4>MIPUC</H4>
<TABLE BORDER = 2 BORDERCOLOR="RED">
<CAPTION>IIPUC TIME TABLE</CAPTION>
<TD ROWSPAN= 2>DAY</TD>
<TD ALIGN = "CENTER" COLSPAN =7>TIME</TD>
</TR>
<TR>
<TH>9-10</TH>
<TH>10-11</TH>
<TH>11-12</TH>
<TH>12-1</TH>
<TH>1-1:30</TH>
<TH>1:30-2:30</TH>
<TH>2:30-3:30</TH>
</TR>
<TR>
<TD>MON</TD>
<TD>BS</TD>
<TD>MATH</TD>
<TD>CS</TD>
<TD>LANG</TD>
<TD ROWSPAN=6> LUNCH BREAK</TD>
<TD>LAB</TD>
<TD>ECO</TD>
</TR>
<TR>
<TD>TUE</TD>
<TD>CS</TD>
<TD>LANG</TD>
<TD>BS</TD>
<TD>MATH</TD>
<TD>ECO</TD>
<TD>CS</TD>
</TD>
<TR>
<TD>WED</TD>
<TD>LANG</TD>
<TD>CS</TD>
<TD>LAB</TD>
<TD>BS</TD>
<TD>ECO</TD>
<TD>ACC</TD>
</TR>
<TR>
<TD>THUR</TD>
<TD>ACC</TD>
<TD>ECO</TD>
<TD>CS</TD>
<TD>LANG</TD>
<TD>LAB</TD>
<TD>BS</TD>
</TR>
<TR>
<TD>FRI</TD>
<TD>BS</TD>
<TD>ACC</TD>
<TD>ENG</TD>
<TD>CS</TD>
<TD>LAB</TD>
<TD>ECO</TD>
</TR>
<TR>
<TD>SAT</TD>
<TD>ACC</TD>
<TD>MATH</TD>
<TD>CS</TD>
<TD>K/H/S</TD>
<TD>BS</TD>
<TD>ECO</TD>
</TR>
</TABLE>
</CENTER>
</BODY>
</HTML>
2. Create an HTML program with table and form.
<HTML>
<BODY>
<CENTER>
<FORM NAME ="FORM" METHOD ="POST" ACTION ="1PUCSEND.APP">
<H4> FIRST PUC APPLICATION FORM </H4>
<TABLE >
<TR>
<TD>STUDENT NAME :</TD>
<TD ><INPUT TYPE ="TEXT"></TD>
</TR>
<TR>
<TD> FATHERS NAME :</TD>
<TD><INPUT TYPE ="TEXT"></TD>
</TR>
<TR>
<TD> CONTACT NUMBER :</TD>
<TD><INPUT TYPE ="TEXT"></TD>
</TR>
<TR>
<TD> STUDENT ADDRESS </TD>
<TD><TEXTAREA ROWS="2" COLS="15" NAME="DESCRIPTION"></TEXTAREA></TD>
</TR>
<TR >
<TD> GENDER :</TD>
<TD><INPUT TYPE="RADIO" NAME="GENDER" VALUE ="MALE" >MALE</INPUT>
<TD><INPUT TYPE="RADIO" NAME="GENDER" VALUE ="FEMALE" >FEMALE</INPUT>
</TR>
<TR >
<TD> SYLLABUS STREAM:</TD>
<TD ><INPUT TYPE="CHECKBOX" NAME="CBSE" VALUE ="CBSE" >CBSE</INPUT>
<TD ><INPUT TYPE="CHECKBOX" NAME="ICSE" VALUE ="ICSE" >ICSE</INPUT>
<TD ><INPUT TYPE="CHECKBOX" NAME="STATE" VALUE ="STATE" >STATE</INPUT>
</TR>
<TR>
<TD> SELECT THE COURSE:</TD>
<TD><SELECT NAME="DROPDOWN">
<OPTION VALUE="PCMB">PCMB</OPTION>
<OPTION VALUE="PCMCS">PCMCS</OPTION>
<OPTION VALUE="EBACS">EBACS</OPTION>
<OPTION VALUE="EBAS">EBAS</OPTION></TD>
</TR>
<TR>
<TD><INPUT TYPE="BUTTON" VALUE ="SUBMIT" ></TD>
<TD><INPUT TYPE="RESET" VALUE ="RESET" ></TD>
</TR>
</TABLE>
</FORM>
</CENTER>
</BODY>
</HTML>