Commerce (English Medium)
Science (English Medium)
Arts (English Medium)
Academic Year: 2021-2022
Date & Time: 13th June 2022, 10:30 am
Duration: 2h
Advertisements
General Instructions:
- This question paper is divided into 3 Sections - A, B and C.
- Section A, consists 7 questions (1-7). Each question carries 2 marks.
- Section B, consists 3 questions (8-10). Each question carries 3 marks.
- Section C, consists 8 questions (11-13). Each question carries 4 marks.
- Internal choices have been given for question numbers - 1, 3, 7, 8 and 12.
Rushil thought "WWW" and "internet" are synonyms i.e., they meant same and can be used interchangeably. But the teacher said that they are not same. Help him to understand the meaning of both the terms with the help of a suitable example of each.
Chapter:
What is the primary function of a gateway in a computer network? Explain briefly.
Chapter:
Find the output of the following SQL query:
SELECT ROUND
(7658.345,2);
Chapter:
Find the output of the following SQL query:
SELECT MOD
(ROUND (13.9,0),3);
Chapter:
Give any two differences between the POWER() and SUM() SQL function.
Chapter:
Advertisements
Find the output of the following SQL query:
SELECT SUBSTR
("FIT INDIA MOVEMENT",5);
Chapter:
Find the output of the following SQL query:
SELECT INSTR("ARTIFICIAL INTELLIGENCE", "IA");
Chapter:
Srikanth created the foollowing table STUDENT in his database.
Table: STUDENT
RollNo | Name | Class | Marks |
1 | Ritika | 12 | 40 |
2 | Angad | 12 | 35 |
3 | Kaveri | 11 | 42 |
4 | Lalitha | 12 | 21 |
5 | Daniel | 11 | 44 |
6 | Rabindra | 11 | 39 |
7 | Rabia | 11 | 28 |
He now wants to count number of students in each class where the number of students is more than 3. He has executed the following query:
SELECT MAX (Marks) FROM STUDENT WHERE COUNT(*)>3 GROUP BY Class;
But, he got an error. Identify the error(s) and rewrite the query. Also underline the correction(s) done.
Chapter:
Ms. Mohini is working in a school and stores the details of all students in a table SCHOOLDATA.
TABLE: SCHOOLDATA | ||||||
Admno | Name | Class | House | Percent | Gender | Dob |
20150001 | Aditya Das | 10 | Green | 86 | Male | 2006-02-20 |
20140212 | Harsh Sharma | 11 | Red | 75 | Male | 2004-10-05 |
20090234 | Swapnil Pant | 10 | Yellow | 84 | Female | 2005-11-21 |
20130216 | Soumen Rao | 9 | Red | 91 | Male | 2006-04-10 |
20190227 | Rahil Arora | 10 | Blue | 70 | Male | 2005-05-14 |
20120200 | Akasha Singh | 11 | Red | 64 | Female | 2004-12-16 |
Write SQL statements from the above given table to:
- To remove leading spaces from the column Name.
- Display the names of students who were born on Sunday.
Chapter:
Predict the output if the following SQL queries from the given table: SCHOOLDATA
TABLE: SCHOOLDATA | ||||||
Admno | Name | Class | House | Percent | Gender | Dob |
20150001 | Aditya Das | 10 | Green | 86 | Male | 2006-02-20 |
20140212 | Harsh Sharma | 11 | Red | 75 | Male | 2004-10-05 |
20090234 | Swapnil Pant | 10 | Yellow | 84 | Female | 2005-11-21 |
20130216 | Soumen Rao | 9 | Red | 91 | Male | 2006-04-10 |
20190227 | Rahil Arora | 10 | Blue | 70 | Male | 2005-05-14 |
20120200 | Akasha Singh | 11 | Red | 64 | Female | 2004-12-16 |
SELECT MAX
(Percent)FROM
SCHOOLDATA;SELECT LEFT
(Gender,1),NameFROM
SCHOOLDATAWHERE YEAR
(Dob)=2005;
Chapter:
Predict the output of the following SQL query:
SELECT TRIM
(" ALL THE BEST ");
Chapter:
Advertisements
Predict the output of the following SQL query:
SELECT POWER(5,2);
Chapter:
Predict the output of the following SQL query:
SELECT UPPER(MID("Start up India",10));
Chapter:
Consider a table "MYPET" with the following data:
Table: MYPET | |||||
Pet_id | Pet_Name | Breed | LifeSpan | Price | Discount |
101 | Rocky | Labrador Retriver | 12 | 16000 | 5 |
202 | Duke | German Shepherd | 13 | 22000 | 10 |
303 | Oliver | Bulldog | 10 | 18000 | 7 |
404 | Cooper | Yorkshire Terrier | 16 | 20000 | 12 |
505 | Oscar | Shih Tzu | NULL | 25000 | 8 |
Write SQL queries for the following:
- Display the Breed of all the pets in uppercase.
- Display the total price of all the pets.
- Display the average life span of all the pets.
Chapter:
Write the name of the SQL function to perform the following operation:
Diplay name of the Month from your date of birth.
Chapter:
Write the name of the SQL function to perform the following operation:
Convert email-id to lowercase.
Chapter:
Write the name of the SQL function to perform the following operation:
Count the number of characters in your name.
Chapter:
Consider the following table: PRODUCT
Table: PRODUCT
PID | PNAME | PRICE | QUANTITY |
P1001 | Eraser | 10.50 | 5 |
P1002 | Ball Pen | 15.00 | 2 |
P1003 | Gel Pen | 25.10 | 3 |
P1004 | Ruler | 5.00 | 1 |
Find the output of the following SQL queries:
SELECT
10+MOD
(QUANTITY,3)FROM
PRODUCTWHERE PNAME
= "Eraser";SELECT ROUND
(PRICE,2)*QUANTITYFROM
PRODUCTWHERE
QUANTITY>2;SELECT UCASE(RIGHT
(PNAME,2))FROM
PRODUCT;
Chapter:
Consider the table: ITEM
Table: ITEM
SNo | Itemname | Type | Price | Stockdate |
1 | Chaises | Living | 11500.58 | 2020-02-19 |
2 | Accent Chairs | Living | 31000.67 | 2021-02-15 |
3 | Baker Racks | Kitchen | 25000.623 | 2019-01-01 |
4 | Sofa | Living | 7000.3 | 2020-10-18 |
5 | Nightstand | Bedroom | NULL | 2021-07-23 |
Write SQL queries for the following:
- Display all the records in descending order of Stockdate.
- Display the Type and total number of items of each Type.
- Display the least Price.
- Display the Itemname with their price rounded to 1 decimal place.
Chapter:
Consider the following table:
Table: SALESMAN
Scode | Sname | Area | Qtysold | Dateofjoin |
S001 | Ravi | North | 120 | 2015-10-01 |
S002 | Sandeep | South | 105 | 2012-08-01 |
S003 | Sunil | NULL | 68 | 2018-02-01 |
S004 | Subh | West | 280 | 2010-04-01 |
S005 | Ankit | East | 90 | 2018-10-01 |
S006 | Raman | North | NULL | 2019-12-01 |
Predict the output for the following SQL queries:
SELECT MAX
(Qtysold),MIN
(Qtysold)FROM
SALESMAN;SELECT COUNT
(Area)FROM
SALESMAN;SELECT LENGTH
(Sname)FROM
SALESMANWHERE
MONTH
(Dateofjoin)=10;SELECT
SnameFROM
SALESMANWHERE RIGHT
(Scode,1)=5;
Chapter:
Consider the following table:
Table: SALESMAN
Scode | Sname | Area | Qtysold | Dateofjoin |
S001 | Ravi | North | 120 | 2015-10-01 |
S002 | Sandeep | South | 105 | 2012-08-01 |
S003 | Sunil | NULL | 68 | 2018-02-01 |
S004 | Subh | West | 280 | 2010-04-01 |
S005 | Ankit | East | 90 | 2018-10-01 |
S006 | Raman | North | NULL | 2019-12-01 |
Based on the given table SALESMAN Write SQL queries to perform the following operation:
- Count the total number of salesman.
- Display the maximum qtysold from each area.
- Display the average qtysold from each area where number of salesman is more than 1.
- Display all the records in ascending order of area.
Chapter:
ABC International School, Delhi has different wings Administrative Wing (W1), Primary Wing (W2), Middle Wing (W3), and Secondary Wing (W4), as shown in the diagram:
The school also has a branch in Mumbai. The school management wants to connect all the wings as well as all the computers of each wing (W1, W2, W3, W4).
Distance between the wings are as follows:
W3 to W1 | 85 m |
W1 to W2 | 40 m |
W2 to W4 | 25 m |
W4 to W3 | 120 m |
W3 to W2 | 150 m |
W1 to W4 | 170 m |
Number of computers in each of the wing:
W1 | 125 |
W2 | 40 |
W3 | 42 |
W4 | 60 |
Based on the above specifications, answer the following questions:
- Suggest the topology and draw the most suitable cable layout for connecting all the wings of Delhi branch.
- Suggest the kind Of network required (out of LAN, MAN, WAN) for connecting
- Administrative Wing (W1) with Middle Wing (W3).
- Administrative Wing (W1) with the Mumbai Branch.
- Suggest the placement of the following devices with Justification:
- Repeater
- Switch/Hub
- Due to pandemic school had to adopt Online classes. Suggest the protocol that is used for sending the voice signals over internet. Also, give an example of an application of WWW that helped the teachers to send messages instantly to the students.
Chapter:
Other Solutions
Submit Question Paper
Help us maintain new question papers on Shaalaa.com, so we can continue to help studentsonly jpg, png and pdf files
CBSE previous year question papers Class 12 Informatics Practices with solutions 2021 - 2022
Previous year Question paper for CBSE Class 12 Informatics Practices-2022 is solved by experts. Solved question papers gives you the chance to check yourself after your mock test.
By referring the question paper Solutions for Informatics Practices, you can scale your preparation level and work on your weak areas. It will also help the candidates in developing the time-management skills. Practice makes perfect, and there is no better way to practice than to attempt previous year question paper solutions of CBSE Class 12.
How CBSE Class 12 Question Paper solutions Help Students ?
• Question paper solutions for Informatics Practices will helps students to prepare for exam.
• Question paper with answer will boost students confidence in exam time and also give you an idea About the important questions and topics to be prepared for the board exam.
• For finding solution of question papers no need to refer so multiple sources like textbook or guides.