0% found this document useful (0 votes)
52 views4 pages

12itqp Nov 22 23

Uploaded by

Geetha S
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)
52 views4 pages

12itqp Nov 22 23

Uploaded by

Geetha S
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/ 4

SREEVATSA VISWANATHAN VIVEKANANDA VIDYALAYA SR. SEC.

SCHOOL, CHITLAPAKKAM, CH-64.


JUNE MONTHLY TEST (2024-25)
CLASS: XII INFORMATION TECHNOLOGY (802) MARKS:30
TIME:1½ Hrs
I Answer the following (Employability skills):any 3 1x3=3
1. Define Communication.
2. Which communication style focuses on the feelings and emotions of the
communicator?
a) Passive b) Aggressive c) Assertive d) Reflective
3. ____________ signals are the part of body language, Non - Verbal
Communication.
a) Eye Contact b) Aura / Vibes c) Facial Expressions d) All of the these
4.

II Answer any 8 of the following: 1 x 8=8


5. Count function in SQL returns the number of (a)
Values (b) Distinct values (c) Groups d) Columns
6. The statement in SQL which allows to change the definition of a table is
(a) Alter (b) Update (c)
Create (d) Select
7. The relational model is based on the concept that data is organized and
stored in two-dimensional tables called
(a) Fields (b) Records (c)
Relations (d) Keys
8. --------is a collection of raw facts which have not been processed to reveal
useful information.
a)function b) data c) query d) database
9. Same information is stored in more than one file is called -----------------
a) data redundancy b) data integrity c) data overflow
10. ____contains description i.e. structure of the data and also the constraints that
are imposed on the data.
a) database b) meta data c)data integrity d) None
11. The ordering of attributes is unimportant in relations
a) True b) False
12. Which is used to identify tuples in a relation. a)
Primary key b)Super key c)Foreign key d) Alternate key
13. Find the right syntax of UPDATE command
a)UPDATE FROM EMPLOYEE SET SALARY = 60000;
b) UPDATE EMPLOYEE SET SALARY = 60000;
c) UPDATE SALARY SET SALARY =60000 FROM EMPLOYEE ;
d) UPDATE TABLE EMPLOYEE SET SALARY = 60000;
III Answer the following:(any 1 employability skills) 2x1=2
14. Enumerate the stages of Active listening.
15. List down the kinds of sentences. (Any 4 sentences)
IV Answer the following : any 2 2x 2=4
16. Write a query to Display all movies with price over 20 and sorted by price
17. SELECT * FROM employee WHERE grade = NULL ; correct the error
V Answer the following: any 3 3x3=9
(18) Consider the following table Teacher and answer the questions that follow :
Table : Teacher

TeacherId Department Periods


T101 SCIENCE 30
T102 NULL 28
T103 MATHEMATICS 34
What will be the output of the following queries on the basis of the above table ?
(a) Select count(Department) from Teacher;
(b) Select count(*) from Teacher;
(c) Select * from Teacher where Periods<30;
19) Consider the following table Emp and answer the questions that follow :

ID NAME AGE ADDRESS SALAR PHONE


Y
1 Siddharth 25 A-4, Ashok 62000 98110766656
Vihar, Delhi
2 Chavi 23 B-21, Model 71000 99113423989
Town, Mumbai
3 Karan 26 KC-24, North 65000 98105393578
Avenue, Bhopal
4 Raunaq 22 A-152, Gomti 89000 99101393576
Nagar, Lucknow
5 Kunal 27 B-5/45, Uday 80000 97653455654
Park, Delhi
Write the commands in SQL :
(a) To display the list of all employees below 25 years old.
(b) To list the names and respective salaries in descending
order of salary.
(c) To count the number of employees with names starting with ‘K’.

20) a)Shanya Khanna is using a table Employee. It has the following columns.
Admno, Name, Agg, Stream [column Agg contains Aggregate marks].
She wants to display highest Agg obtained in each Stream. She wrote the
following statement: (1)
SELECT Stream, MAX(Agg) FROM Employee;
But she did not get the desired result. Rewrite the above query with necessary
changes to help her get the desired output.
b) Mention any four advantages of DBMS. (2)
21) (a) What is the difference between char and varchar datatype in SQL? (1)

(b) What is Alter command ? How it is different from Update command. (2)
VI Answer the following : (any 1) 1x4=4
22.Write SQL queries for the below questions:
PID Productnam Manufacture Pric
e r e
TP01 Talcum LAK 40
Powder
FW0 Face Wash ABC 45
5
BS01 Bath Soap ABC 55
SH06 Shampoo XYZ 120
FW1 Face Wash XYZ 95
2
i) Display details of Products whose price is range of 50 to 100.
ii) Increase the price of all products by 10.
iii) Display Maximum , minimum of price of each product type.
iv) Add new column Purchase_date in the table product.
23. Consider the following table item and Customer. Give outputs for SQL
queries :

i) SELECT DISTINCT City FROM Customer;


ii) Select customername,manufacturer from item,customer where Item.I_Id=
Customer.I_Id;
iii) Select Itemname,Max(price),count(*) from Item group by ItemName;
iv) Select Itemname,price*100 from Item where Manufacturer=”ABC”;

You might also like