You are on page 1of 3

CBSE AISSCE Practical Examination 2014-15

PRACTICAL EXAMINATION : COMPUTER SCIENCE (083 )


Time: 3 hours
General Instructions:
1. C++ Programming
2. SQL
3. Logic Gate
4. Practical Record
5. Project File
6. Viva voice

F.M : 30
12
05
02
04
05
02

Date: 05/02/2016

marks
marks
marks
marks
marks
marks

C++ Programming Questions:


1. Write a program to sort an integer array using BUBBLE SORT.
2. Write a program to sort an integer array using INSERTION SORT .
3. Write a program to sort an integer array using SELECTION SORT .
4. Write a program for PUSH & POP operation in arrayed STACK.
5. Write a program for INSERTION & DELETION operation in arrayed QUEUE.
6. Write a program for INSERTION & DELECTION in Dynamic STACK.
7. Write a program for INSERTION & DELECTION in Dynamic STACK.
8. Write a program for INSERTION & DELETION operation in CIRCULAR QUEUE.
9. Write a program to search & display details of all students, whose Percentage is greater
than 75 from a binary file st.DAT. Assuming that the binary file is containing the
objects of following class:
Class student
{
int roll;
char name[10];
float per;
};
10.Write a program to input N number of integer elements in an array & convert it into 2D
array as given below
INPUT 1D array :
2 5 7 4
Resultant 2D Array is:
2 5
7
4
2 5
7
0
2 5
0
0
2 0
0
0
11.Define a class SCHOOL with given specification:
PRIVATE Members:
Sh_code
:
int
Sh_name
:
string
Desig
:
string to store PGT, TGT or PRT
Sal
:
float
Income_tax
:
float
Net_sal
:
float
Public Members:
Getdata()
: to accept all data

Cal_tax
: to calculate income tax on the basis of following table
Salary per month
Income tax per month
>= 45000
10%
>= 30000 but < 45000
7%
>= 18000 but < 30000
5%
Disp()
: to display all data.
12.Write a program for searching an integer element from an 1d array using BINARY
Searching.
K Map Questions:
1. Reduce the following Boolean Expression using
F(A,B,C,D) = (0,1,4,5,6,7,11,12,13,14,15)
2. Reduce the following Boolean Expression using
F(A,B,C,D) = (2,3,4,5,6,7,8,10,11)
3. Reduce the following Boolean Expression using
F(A,B,C,D) = (0,1,2,4,5,6,8,10)
4. Reduce the following Boolean Expression using
F(A,B,C,D) = (,4,5,6,7,13,15)

K-map & draw the circuit diagram


K-map & draw the circuit diagram
K-map & draw the circuit diagram
K-map & draw the circuit diagram

SQL Questions:
1. Table: HOSPITAL
S_no. :
int Primary Key
Name :
string
Age
:
int ( must be greater than 20)
Dept :
String
Charges
:
int
Sex
:
char default value is M
1. Write SQL statement for creation of table Hospita.
2. Insert certain records in the above table.
3. Write SQL statement to count total employee in each department.
4. Count total Female employee.
5. Write SQL to display details of all employee whose name started with R.

2. Table : GAMES
Gcode
Name
:
Type
:
Number
:
Price
:
1.
2.
3.
4.
5.

:
int Primary Key
string
string (game type like indoor , outdoor)
int
float (must be greater than 1)

Write SQL statement for creation of table GAMES.


Insert certain records in the above table.
Write SQL statement to count total indoor games.
Write SQL to display details of games whose prize in between 2000 to 10000.
Write SQL to display details of all games whose type is outdoor and number is greater
than 3.

Signature of Internal
Examiner No. :

Signature of External
Examiner NO.:

You might also like