Ii Puc Computer Science Lab Manual Page 1 of 88
Ii Puc Computer Science Lab Manual Page 1 of 88
www.gkmvkalyan.blogspot.com
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 2 of 88
******
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 3 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 4 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 5 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 6 of 88
Note:
✓ Students should practice and write all programs in the record.
✓ In Final Lab Examination there will be 2 parts.
❖ PART-A → Only C++ Programs will be asked.
❖ PART-B → Either SQL or HTML Programs will be asked.
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 7 of 88
#include<iostream.h>
#include<conio.h>
class GKFrequency
{
private:
int a[50], n, i, ele, freq;
public:
void input( );
void findfreq( );
void output( );
};
void GKFrequency::findfreq( )
{
freq=0;
for( i=0; i<n; i++)
if(ele == a[i]) freq++;
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 8 of 88
void GKFrequency::output( )
{
cout<<ele<<" Occurs "<<freq<<" Time ";
}
void main( )
{
GKFrequency f;
clrscr( );
f.input( );
f.findfreq( );
f.output( );
getch( );
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 9 of 88
OUTPUT-1
OUTPUT-2
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 10 of 88
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 11 of 88
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
class GKInsertion
{
private:
int a[50], n, pos, ele, i;
public:
void input( );
void addelement( );
void output( );
};
void GKInsertion::input( )
{
cout<<"Enter the size of the array"<<endl;
cin>>n;
cout<<"Enter the elements for the array"<<endl;
for(i=0; i<n; i++)
cin>>a[i];
cout<<"Enter the position of the element in the array"<<endl;
cin>>pos;
cout<<"Enter the element to be inserted"<<endl;
cin>>ele;
}
void GKInsertion::addelement( )
{
if(pos>n)
{
cout<<"Out of array limits";
getch( );
exit(0);
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 12 of 88
void GKInsertion::output( )
{
cout<<"Array elements after insertion are:"<<endl;
for(i=0; i<n; i++)
cout<<a[i]<<"\t";
}
void main( )
{
GKInsertion i;
clrscr( );
i.input( );
i.addelement( );
i.output( );
getch( );
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 13 of 88
OUTPUT-1
OUTPUT-2
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 14 of 88
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 15 of 88
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
class GKDeletion
{
private:
int a[50], n, pos, i;
public:
void input( );
void remove( );
void output( );
};
void GKDeletion::input( )
{
cout<<"Enter the size of the array"<<endl;
cin>>n;
cout<<"Enter the elements for the array"<<endl;
for (i=0; i<n; i++)
cin>>a[i];
cout<<"Enter the position to an delete an element"<<endl;
cin>>pos;
}
void GKDeletion::remove( )
{
if(pos>n-1)
{
cout<<"Out of array limits";
getch( );
exit(0);
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 16 of 88
void GKDeletion::output( )
{
cout<<"After deletion the array elements are"<<endl;
for(i=0; i<n; i++)
cout<<a[i]<<"\t";
}
void main( )
{
GKDeletion d;
clrscr();
d.input( );
d.remove( );
d.output( );
getch( );
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 17 of 88
OUTPUT-1
OUTPUT-2
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 18 of 88
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 19 of 88
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
class GKSort
{
private:
int a[50], n, i;
public:
void input( );
void insertionsort( );
void output( );
};
void GKSort::input( )
{
cout<<"Enter the size of the array"<<endl;
cin>>n;
cout<<"Enter the elements for the array"<<endl;
for(i=0; i<n; i++)
cin>>a[i];
}
void GKSort::insertionsort( )
{
int j, temp;
for(i=1; i<n; i++)
{
j = i;
while(j >= 1)
{
if(a[j] < a[j-1])
{
temp = a[j];
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 20 of 88
a[j] = a[j-1];
a[j-1] = temp;
}
j = j-1;
}
}
}
void GKSort::output( )
{
cout<<"Sorted List"<<endl;
for(i=0; i<n; i++)
cout<<a[i]<<"\t";
}
void main( )
{
GKSort s;
clrscr();
s.input( );
s.insertionsort( );
s.output( );
getch( );
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 21 of 88
OUTPUT-1
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 22 of 88
#include<iostream.h>
#include<conio.h>
class GKSearch
{
private:
int a[50], i, n, ele, loc, low, high, mid;
public:
void input( );
void bsearch( );
void output( );
};
void GKSearch::input( )
{
cout<<"Enter the size of the array:"<<endl;
cin>>n;
cout<<"Enter the array elements in sorted order:"<<endl;
for(i=0;i<n;i++)
cin>>a[i];
cout<<"Enter the element to search:"<<endl;
cin>>ele;
}
void GKSearch::bsearch( )
{
loc = -1;
low = 0;
high = n-1;
while(low <= high)
{
mid = (low+high)/2;
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 23 of 88
if(ele == a[mid])
{
loc = mid;
break;
}
else
if(ele < a[mid])
high = mid-1;
else
low = mid+1;
}
}
void GKSearch::output( )
{
if(loc >=0)
cout<<ele<<" Found at Location "<<loc;
else
cout<<ele<<" Element does not exist";
}
void main( )
{
GKSearch s;
clrscr( );
s.input( );
s.bsearch( );
s.output( );
getch( );
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 24 of 88
OUTPUT-1
OUTPUT-2
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 25 of 88
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 26 of 88
6. Write a program to create a class with data members principle, time and
rate. Create member functions to accept data values to compute simple
interest and to display the result.
#include<iostream.h>
#include<conio.h>
class GKSI
{
private:
double p, t, r, si;
public:
void input()
{
cout<<"enter value for p,t,r "<<endl;
cin>>p>>t>>r;
}
void calculate()
{
si=(p*t*r)/100;
}
void output()
{
cout<<"simple interest= "<<si;
}
};
void main()
{
GKSI x;
clrscr();
x.input();
x.calculate();
x.output();
getch();
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 27 of 88
OUTPUT-1
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 28 of 88
#include<iostream.h>
#include<conio.h>
#include<math.h>
class GKquadratic
{
private:
double a, b, c, d, r1, r2;
public:
void input()
{
cout<<"enter the co-efficient"<<endl;
cin>>a>>b>>c;
}
void output()
{
d=b*b-4*a*c;
if(d==0)
{
r1=-b/(2*a);
r2=r1;
cout<<"Roots are equal"<<endl;
cout<<"Roots are = "<<r1<<” and “ <<r2;
}
if(d>0)
{
r1=(-b+sqrt(d))/(2*a);
r2=(-b-sqrt(d))/(2*a);
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 29 of 88
if(d<0)
{
cout<<"Roots are imaginary";
}
}
};
void main()
{
GKquadratic Q;
clrscr();
Q.input();
Q.output();
getch();
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 30 of 88
OUTPUT-1
OUTPUT-2
OUTPUT-3
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 31 of 88
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 32 of 88
#include<iostream.h>
#include<conio.h>
#include<math.h>
class GKfunoverload
{
private:
float s;
public:
double area(double a)
{
return(a*a);
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 33 of 88
void main()
{
double x,y,z;
int ans;
GKfunoverload F;
clrscr();
cout<<"Enter the number of sides(1,2,and 3)"<<endl;
cin>>ans;
if(ans==1)
{
cout<<"enter the side ";
cin>>x;
cout<<"Area of the square= "<<F.area(x);
}
else if(ans==2)
{
cout<<"enter two sides ";
cin>>x>>y;
cout<<"Area of the rectangle= "<<F.area(x,y);
}
else if(ans==3)
{
cout<<"enter three sides ";
cin>>x>>y>>z;
cout<<"Area of the triangle= "<<F.area(x,y,z);
}
else
cout<<”invalid side”;
getch();
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 34 of 88
OUTPUT
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 35 of 88
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 36 of 88
#include<iostream.h>
#include<conio.h>
class GKLine
{
public:
inline int cube(int a)
{
return(a*a*a);
}
};
void main()
{
GKLine L;
int n;
clrscr();
cout<<"Enter the number to find its cube ";
cin>>n;
cout<<"cube of " <<n<<” is ”<<L.cube(n);
getch();
}
OUTPUT-1
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 37 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 38 of 88
void main()
{
GKSeries S;
clrscr();
S.input();
S.calculate();
S.output();
getch();
}
OUTPUT-1
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 39 of 88
11. Create a base class containing the data members roll number and
name. Also create a member function to read and display the data using the
concept of single level inheritance. Create a derived class that contains
marks of two subjects and total marks as data members.
#include<iostream.h>
#include<conio.h>
class GKStudent
{
private:
int regno;
char name[50];
public:
void baseinput()
{
cout<<"enter the name ";
cin>>name;
cout<<"enter the regno ";
cin>>regno;
}
void baseoutput()
{
cout<<"Regno "<<regno<<endl;
cout<<"Name "<<name<<endl;
}
};
class GKMarks : public GKStudent
{
private:
int m1, m2, total;
public:
void deriveinput()
{
cout<<"enter two subject marks"<<endl;
cin>>m1>>m2;
total=m1+m2;
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 40 of 88
void deriveoutput()
{
cout<<"Subject1 "<<m1<<endl;
cout<<"Subject2 "<<m2<<endl;
cout<<"Total Marks "<<total;
}
};
void main()
{
GKMarks M;
clrscr();
M.baseinput();
M.baseoutput();
M.derivinput();
M.derivoutput();
getch();
}
OUTPUT-1
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 41 of 88
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 42 of 88
12. Create a class containing the following data members register No.,
name and fees. Also create a member function to read and display the data
using the concept of pointers to objects.
#include<iostream.h>
#include<conio.h>
class GKStudent
{
private:
int regno,fees;
char name[100];
public:
void input()
{
cout<<"enter the regno ";
cin>>regno;
cout<<"enter the name ";
cin>>name;
cout<<"enter the fees ";
cin>>fees;
}
void output()
{
cout<<"Register number "<<regno<<endl;
cout<<"Student Name "<<name<<endl;
cout<<"Fees "<<fees<<endl;
}
};
void main()
{
GKStudent Std, *ptr;
clrscr();
ptr=&Std;
ptr->input();
ptr->output();
getch();
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 43 of 88
Output
Student’s Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 44 of 88
HTML Programs
<html>
<head>
<title>MY Time Table</title>
</head>
<body bgcolor="PINK">
<H1><center>Study Time Table</center></H1>
<tr>
<td>MONDAY</td>
<td>Home Work</td>
<td>Dinner</td>
<td>Physics</td>
<td>Computer</td>
</tr>
<tr>
<td>TUESDAY</td>
<td>Home Work</td>
<td>Dinner</td>
<td>Chemistry</td>
<td>Maths</td>
</tr>
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 45 of 88
<tr>
<td>WEDNESDAY</td>
<td>Home Work</td>
<td>Dinner</td>
<td>Language</td>
<td>English</td>
</tr>
<tr>
<td>THURSDAY</td>
<td>Home Work</td>
<td>Dinner</td>
<td>Physics</td>
<td>Computer</td>
</tr>
<tr>
<td>FRIDAY</td>
<td>Home Work</td>
<td>Dinner</td>
<td>Chemistry</td>
<td>Maths</td>
</tr>
<tr>
<td>SATURDAY</td>
<td>Home Work</td>
<td>Dinner</td>
<td>Language</td>
<td>English</td>
</tr>
</table></body></html>
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 46 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 47 of 88
<html>
<head>
<title>Table and Form</title>
</head>
<body bgcolor="PINK">
<h2> Student Data Form</h2>
<tr>
<td>Student Name: </td>
<td><input type=”text” name=”sname”></td>
</tr>
<tr>
<td>Date of Birth: </td>
<td><input type="date" name="DOB" > </td>
</tr>
<tr>
<td>Gender: </td>
<td><input type="radio" name=”gender">Male
<input type="radio" name=”gender">Female
</td>
</tr>
<tr>
<td>Course: </td>
<td><select Name="dropdown">
<option value=1>Select Course</option>
<option value=2>PCMB</option>
<option value=3>PCMC</option>
<option value=4>PCME</option>
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 48 of 88
</select></td>
</tr>
<tr>
<td>Mobile Number: </td>
<td><input type=”text” name=”mobileno”></td>
</tr>
<tr>
<td><input type="submit" value="Submit"></td>
</tr>
</form></table></body></html>
Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 49 of 88
SQL Programs
Create a table for house hold Electricity bill with the following fields.
Field Name Type
RR_NO VARCHAR2(10)
CUS_NAME VARCHAR2(15)
BILLING_DATE DATE
UNITS NUMBER(5)
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 50 of 88
3. Compute the bill amount for each customer as per the following rules.
a. MINAMT Rs. 50
b. First 100 units Rs 4.50/Unit
c. >100 units Rs. 5.50/Unit
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 51 of 88
1. Add records into the table for 10 students for Student ID, Student Name
and marks in 6 subjects using INSERT command.
insert into student values(101,'Rama',99,85,97,96,92,96);
insert into student values(102,'Reena',91,82,67,86,62,76);
insert into student values(104,'Deepa',60,55,47,36,72,65);
insert into student values(109,'lokesh',40,45,35,60,35,35);
insert into student values(106,'Roja',15,25,47,36,42,36);
insert into student values(107,'Harish',55,57,57,56,52,56);
insert into student values(105,'Humera',19,15,27,16,12,26);
insert into student values(110,'Rani',69,65,67,66,62,68);
insert into student values(103,'Sheebha',59,75,77,65,52,69);
insert into student values(108,'Ramaya',23,25,57,56,52,56);
2. Display the description of the fields in the table using DESC command.
desc student;
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 52 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 53 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 54 of 88
******
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 55 of 88
#include<iostream.h>
#include<conio.h>
#define MAX 3
class stack
{
private:
int top,ele,s[MAX],i;
public:
stack()
{
top=-1;
}
void push()
{
if(top == MAX)
{
cout<<"Stack full"<<endl;
return;
}
top=top+1;
cout<<"enter the element to insert"<<endl;
cin>>ele;
s[top]=ele;
}
void display()
{
if(top!=-1)
{
cout<<"stack elements are "<<endl;
for(i=top-1; i>=0; i--)
{
cout<<s[i]<<endl;
}
}
else
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 56 of 88
cout<<"stack is empty"<<endl;
}
};
void main()
{
stack S;
char choice;
clrscr();
do
{
S.push();
cout<<"Do you wish to continue(y/n) "<<endl;
cin>>choice;
}
while(choice=='y');
S.display();
getch();
}
Output
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 57 of 88
y
Stack full
Do you wish to continue(y/n)
n
stack elements are
56
45
23
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 58 of 88
#include<iostream.h>
#include<conio.h>
class stack
{
private:
int top,ele,s[20],i;
public:
stack()
{
top=-1;
}
void push()
{
top=top+1;
cout<<"Enter the element to insert"<<endl;
cin>>ele;
s[top]=ele;
}
void pop()
{
if(top==-1)
cout<<"Stack underflow"<<endl;
else
cout<<"Element deleted is "<<s[top]<<endl;
top=top-1;
}
void display()
{
if(top==-1)
cout<<”Stack underflow”<<endl;
else
cout<<"Stack elements are"<<endl;
for(i=top;i>=0;i--)
{
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 59 of 88
cout<<s[i]<<endl;
}
}
};
void main()
{
char choice;
int option;
stack s;
clrscr();
do
{
cout<<"Enter:"<<endl;
cout<<"1->Push"<<endl;
cout<<"2->Pop"<<endl;
cout<<"3->Display"<<endl;
cin>>option;
switch(option)
{
case 1:s.push();
break;
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 60 of 88
case 2:s.pop();
break;
case 3:s.display();
break;
default:cout<<"Invalid option"<<endl;
break;
}
cout<<"Do you wish to continue(y/n)"<<endl;
cin>>choice;
}while(choice=='y');
getch();
}
OUTPUT
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 61 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 62 of 88
cout<<q[i]<<" ";
}
}
};
void main()
{
char choice;
int option;
queue q;
clrscr();
do
{
cout<<"Enter:"<<endl;
cout<<"1->Enque"<<endl;
cout<<"2->Deque"<<endl;
cout<<"3->Display"<<endl;
cin>>option;
switch(option)
{
case 1:q.enque();
break;
case 2:q.deque();
break;
case 3:q.display();
break;
default:cout<<"Invalid option"<<endl;
break;
}
cout<<"Do you wish to continue(y/n)"<<endl;
cin>>choice;
}while(choice=='y');
getch();
}
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 63 of 88
OUTPUT
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 64 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 65 of 88
cout<<ele<<" is inserted"<<endl;
}
}
void display()
{
if(start==NULL)
{
cout<<"Linked list is empty"<<endl;
return;
}
cout<<"Linked list contains"<<endl;
temp=start;
while(temp!=NULL)
{
cout<<temp->data<<"->";
temp=temp->link;
}
cout<<"NULL"<<endl;
}
};
void main()
{
char choice;
int option;
linked_list l;
clrscr();
do
{
cout<<"Enter:"<<endl;
cout<<"1->Append"<<endl;
cout<<"2->Display"<<endl;
cin>>option;
switch(option)
{
case 1:l.append();
break;
case 2:l.display();
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 66 of 88
break;
default:cout<<"Invalid choice"<<endl;
break;
}
cout<<"Do you wish to continue(y/n):";
cin>>choice;
}while(choice=='y');
getch();
}
OUTPUT
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 67 of 88
21. Generate the Employee details and compute the salary based on the
department.
Create the following table EMPLOYEE.
Field Name Type
EMP_ID NUMBER(4)
DEPT_ID NUMBER(2)
EMP_NAME VARCHAR2(25)
EMP_SALARY NUMBER(5)
Enter 10 rows of data for table EMPLOYEE and 4 rows of data for
DEPARTMENT table.
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 68 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 69 of 88
Find the names of all employees who work for the Accounts department?
select * from gkemp where deptid=(select deptid from gkdept where
dname='ACCOUNTS');
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 70 of 88
Retrieve the department names for each department where only one
employee works.
select dname from gkdept where deptid in (select deptid from gkemp
group by deptid having count(*)=1);
1 rows updated
Add a new Colum to the table EMPLOYEE called BONUS NUMBER (5) and
compute 5% of the salary to the said field.
Alter table gkemp add(bonus number(5));
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 71 of 88
8. Delete all the rows for the employee in the Apprentice department.
delete from gkemp where deptid=(select deptid from gkdept where
dname='APPRENTICE');
1 row(s) deleted
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 72 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 73 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 74 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 75 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 76 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 77 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 78 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 79 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 80 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 81 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 82 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 83 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 84 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 85 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 86 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 87 of 88
www.gkmvkalyan.blogspot.com
II PUC Computer Science Lab Manual Page 1 of 88
www.gkmvkalyan.blogspot.com