हिंदी

Informatics Practices Set 4 2021-2022 Commerce (English Medium) Class 12 Question Paper Solution

Advertisements
Informatics Practices [Set 4]
Marks: 35 CBSE
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:

  1. This question paper is divided into 3 Sections - A, B and C.
  2. Section A, consists 7 questions (1-7). Each question carries 2 marks.
  3. Section B, consists 3 questions (8-10). Each question carries 3 marks.
  4. Section C, consists 8 questions (11-13). Each question carries 4 marks.
  5. Internal choices have been given for question numbers - 1, 3, 7, 8 and 12.

SECTION - A [Each question carries 2 marks]
[2]1
[2]1.i

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.

Concept: undefined - undefined
Chapter:
OR
[2]1.ii

What do you understand by the term cookies?

Concept: undefined - undefined
Chapter:

How can we disable cookies?

Concept: undefined - undefined
Chapter:
[2]2
[1]2.i

What is the primary function of a gateway in a computer network? Explain briefly.

Concept: undefined - undefined
Chapter:
[1]2.ii

Give examples of any two plug-ins. 

Concept: undefined - undefined
Chapter:
[2]3
[2]3.i
[1]3.i.1

Find the output of the following SQL query:

SELECT ROUND(7658.345,2); 

Concept: undefined - undefined
Chapter:
[1]3.i.2

Find the output of the following SQL query:

SELECT MOD(ROUND (13.9,0),3);

Concept: undefined - undefined
Chapter:
OR
[2]3.ii

Give any two differences between the POWER() and SUM() SQL function.

Concept: undefined - undefined
Chapter:
Advertisements
[2]4

Give one advantage of Bus topology.

Concept: undefined - undefined
Chapter:

Give one disadvantage of Bus topology.

Concept: undefined - undefined
Chapter:

Give one advantage of Star topology.

Concept: undefined - undefined
Chapter:

Give one disadvantage of Star topology.

Concept: undefined - undefined
Chapter:
[2]5
[1]5.i

Find the output of the following SQL query:

SELECT SUBSTR("FIT INDIA MOVEMENT",5);

Concept: undefined - undefined
Chapter:
[1]5.ii

Find the output of the following SQL query:

SELECT INSTR("ARTIFICIAL INTELLIGENCE", "IA");

Concept: undefined - undefined
Chapter:
[2]6

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.

Concept: undefined - undefined
Chapter:
[2]7
[2]7.i

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:

  1. To remove leading spaces from the column Name.
  2. Display the names of students who were born on Sunday.
Concept: undefined - undefined
Chapter:
OR
[2]7.ii

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
  1. SELECT MAX(Percent) FROM SCHOOLDATA;
  2. SELECT LEFT(Gender,1),Name FROM SCHOOLDATA WHERE YEAR(Dob)=2005;
Concept: undefined - undefined
Chapter:
SECTION - B [Each question carries 3 marks]
[3]8
[3]8.i
[1]8.i.1

Predict the output of the following SQL query:

SELECT TRIM(" ALL THE BEST ");

Concept: undefined - undefined
Chapter:
Advertisements
[1]8.i.2

Predict the output of the following SQL query:

SELECT POWER(5,2);

Concept: undefined - undefined
Chapter:
[1]8.i.3

Predict the output of the following SQL query:

SELECT UPPER(MID("Start up India",10));

Concept: undefined - undefined
Chapter:
OR
[3]8.ii

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:

  1. Display the Breed of all the pets in uppercase.
  2. Display the total price of all the pets.
  3. Display the average life span of all the pets.
Concept: undefined - undefined
Chapter:
[3]9
[1]9.i

Write the name of the SQL function to perform the following operation:

Diplay name of the Month from your date of birth.

Concept: undefined - undefined
Chapter:
[1]9.ii

Write the name of the SQL function to perform the following operation:

Convert email-id to lowercase.

Concept: undefined - undefined
Chapter:
[1]9.iii

Write the name of the SQL function to perform the following operation:

Count the number of characters in your name.

Concept: undefined - undefined
Chapter:
[3]10

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:

  1. SELECT 10+MOD(QUANTITY,3) FROM PRODUCT WHERE PNAME = "Eraser";
  2. SELECT ROUND(PRICE,2)*QUANTITY FROM PRODUCT WHERE QUANTITY>2;
  3. SELECT UCASE(RIGHT(PNAME,2)) FROM PRODUCT;
Concept: undefined - undefined
Chapter:
SECTION - C [Each question carries 4 marks]
[4]11

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:

  1. Display all the records in descending order of Stockdate.
  2. Display the Type and total number of items of each Type.
  3. Display the least Price.
  4. Display the Itemname with their price rounded to 1 decimal place. 
Concept: undefined - undefined
Chapter:
[4]12
[4]12.i

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:

  1. SELECT MAX(Qtysold), MIN(Qtysold) FROM SALESMAN;
  2. SELECT COUNT (Area) FROM SALESMAN;
  3. SELECT LENGTH (Sname) FROM SALESMAN WHERE MONTH(Dateofjoin)=10;
  4. SELECT Sname FROM SALESMAN WHERE RIGHT(Scode,1)=5;
Concept: undefined - undefined
Chapter:
OR
[4]12.ii

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:

  1. Count the total number of salesman.
  2. Display the maximum qtysold from each area.
  3. Display the average qtysold from each area where number of salesman is more than 1.
  4. Display all the records in ascending order of area.
Concept: undefined - undefined
Chapter:
[4]13

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:

  1. Suggest the topology and draw the most suitable cable layout for connecting all the wings of Delhi branch.
  2. Suggest the kind Of network required (out of LAN, MAN, WAN) for connecting
    1. Administrative Wing (W1) with Middle Wing (W3).
    2. Administrative Wing (W1) with the Mumbai Branch.
  3. Suggest the placement of the following devices with Justification:
    1. Repeater
    2. Switch/Hub
  4. 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.
Concept: undefined - undefined
Chapter:

Other Solutions




































Video TutorialsVIEW ALL [2]

Submit Question Paper

Help us maintain new question papers on Shaalaa.com, so we can continue to help students




only jpg, png and pdf files

CBSE previous year question papers Class 12 Informatics Practices with solutions 2021 - 2022

     CBSE Class 12 Informatics Practices question paper solution is key to score more marks in final exams. Students who have used our past year paper solution have significantly improved in speed and boosted their confidence to solve any question in the examination. Our CBSE Class 12 Informatics Practices question paper 2022 serve as a catalyst to prepare for your Informatics Practices board examination.
     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.
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×