0% found this document useful (0 votes)
30 views3 pages

2 QP 1

Uploaded by

JORGE PACHECO
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views3 pages

2 QP 1

Uploaded by

JORGE PACHECO
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

KENDRIYA VIDYALAYA SANGATHAN SAMPLE PAPER

CLASS XI INFORMATICS PRACTICES


TERM II - 2021-22
Time Duration - 2 hours Maximum Marks : 35
_______________________________________________________________________
General Instructions:-
1. This question paper contains three parts A,B,C Each part is compulsory .
2. Section A – contains 7 questions each of 2 marks
3. Section B- contains 3 questions each of 3 marks
4. Section C -contains 3 questions each of 4 marks
5. In 4 questions (1,3,8,13) internal choices have been given
6. All questions are compulsory

SECTION A

1 What do you mean by constraints ? 2


Or
What do you mean by foreign key ? Explain with suitable example?

2 What do you mean by Data Redundancy? How this can be solved? 2

3 2
Directions- In the question given below there are two statements marked as
Assertion (A) and Reason (R) . Read the statements and choose the correct
option.
a. Both (A) and (R) are True, and (R) is the correct explanation of (A).
b. Both (A) and (R) are True, but (R) is not the correct explanation of (A).
c. (A) is true, but (R) is false
d. (A) is false, but (R) is true
a) Assertion (A )- The SQL keyword Like only used with wildcards
Reason ( R ):- ‘_’ underscore and “%” percent are two symbols used in
wildcards .
b) Write the use of “_” and “%” symbols in SQL ?
Or
a) Assertion (A) - The qualifier DISTINCT must be used in an SQL
statement when we want to eliminate duplicate rows.
Reason ( R ) - DISTINCT only works with numeric datatype only .
b) Is Distinct and Unique keywords functionality are same ?

4 What do you mean by DDL and DML ? Give some examples ? 2

5 The symbol Asterisk (*) in a select query retrieves ____________. 2


i) All data from the table ii) Data of primary key only
iii) NULL data iv) None of the mentioned
How to replace this Asterisk (*) symbol in query ?

6 ‘All primary keys are candidate keys but all candidate keys are not primary.’ 2
State True or False and Justify your answer

7 a)_______ is the cloud based services that you are using at present . 2
i) Google drive ii) Microsoft Azure iii) i Cloud iv) All of these These
b) The process of encrypting and decrypting information :-
i) Decentralized Application ii) Cryptocurrency
iii) Block iv) Cryptography

SECTION B

8 What do you mean by Degree and Cardinality ? How is Tuple different from 3
Attribute?
Or
What do you mean datatype ? How char is different from varchar ?

9 3

Create the table salary based on the above given instance chart .

10 What do you mean by Big Data ? Mention five characteristics of Big Data ? 3

SECTION C

11 An organisation wants to create a database EMP-DEPENDENT to maintain 4


following details about its employees and their dependent.
EMPLOYEE(AadharNumber, Name, Address, Department,EmployeeID)
DEPENDENT(EmployeeID, DependentName, Relationship)
a) Name the attributes of EMPLOYEE, which can be used as candidate keys.
b) The company wants to retrieve details of dependent of a particular
employee. Name the tables, and find primary key of that table .
c) What is the degree of EMPLOYEE and DEPENDENT relation?
d) How to change data of column ‘Relationship from char to varchar

12 What do you mean by alter command ? Explain with syntax. 4


How alter is different from Update command?

13 Consider the following table employee :- 4

—----------------------------------------------------------------------------------------------
Write SQL statement for the queries (i) and (ii) and output for (iii) to (vi)
(i) To display all details of those employees whose name starts from “D”;
(ii) To insert a record in employee table with the values :
(11,sita,45000,Accounts,2000-02-19,35,F)
(iii) select department , name from employee where department not in( “HR”,
“computer”);
(iv) select age from employee order by age desc;
(v) select max(basic) from employee;
(vi)select count(distinct department) from employee;

Or

Your school management has decided to organise a cricket match between


students of class 11th and 12th. All the students are divided into 4 teams: team
rockstars, team big gamers, team magnet and team current.
During the summer vacation various matches or to be held between these
teams help your sports teacher to do the following
I. create a table team with the following consideration
a) It should have a column team ID for storing an integer with the
value between 1 and 9 which refers to unique identification of a
team
b) Each team ID have its associated names (team name) which
should be a integer of length not less than 10 characters
II. Give the statement to make team id as a primary key,
III. Show the structure of a table team using SQL command
IV. As for the performance of the student four teams will be formed as given
below
Insert these 4 rows in the team table
Row 1 - (1, team rockstar)
Row 2 - (2 , team big gamers)
Row 3 - (3 team magnet)
Row 4 - (4 team current )
*********************************************************************************************************

You might also like