You are on page 1of 5

Second Term Examination, Dec – 2023

Informatics Practices (Answer key)


Class : XI Max Marks : 70
Date : 18/12/2023 Duration : 3 Hrs.

SECTION A

1. columns 1
2. Internet of things 1
3. b. In self-driving cars that do not require a driver. 1
4. a. Degree=7, Cardinality=5 1
5. c. slow speed 1
6. b. DDL 1
7. c) ; 1
8. a. Column cannot have blank value 1

9. autocorrect, autocomplete, predictive text, chatbots, sentiment analysis, speech recognition, 1


text summarization and machine translation (any 2)
10. VR device 1
11. Data redundancy 1
12. Humanoid robots 1
13. False 1
14. d. Cardinality 1
15. True 1
16. b. Natural language Processing 1
17. i. Both A and R are true and R is the correct explanation for A 1

18. iii. A is True but R is False 1

SECTION B
19. On-demand computing - is a business computing model in which computing resources are made 2
available to the user on an “as needed” basis. Rather than all at once, on-demand computing allows
cloud hosting companies to provide their clients with access to computing resources as they become
necessary.
OR

Page 7 of 11
Advantages of database:
• Store information -> tabular form • Control of data redundancy • Maintain data consistency
• Storage and retrieval of data becomes faster and convenient • Sharing of data, economical
• Reduced program effect • Improved Data integrity, backup & recovery • Privacy and security
20. Similarity: • Both are used for storing non-numeric data/ alphabets as well as numbers. 2
• Both can store 1 to 255 characters. • Values must be enclosed in single quotes or double
quotes. • Both can store same type of values.

Difference : Char is a fixed length character datatype whereas varchar is a variable length
character datatype.

Datatype – char & varchar

21. Create table players ( Jersey_no int(2) primary key, Player_name varchar(20), 2
Matches_played int(3), Runs int(5) );

22. SELECT * FROM FRIENDS WHERE Pin_Code = ‘427839’; 2


(Pin code is character type so it must be enclosed in quotes)
23. • Easy to maintain. • Increased security at a much lesser cost. • Rapid scaling of capacity. 2

• On-demand self-service by consumers. • Resource pooling of physical and virtual resources.


24. 2
DDL: DML:
* Data definition language * Data Manipulation language
* performs task related to structure * used to manipulate data, i.e) rec/rows in a
of database objects (relation/db). table/relation.
* Eg: create, alter, drop etc. * Eg: Insert into, update, delete, select etc.
* DDL is not classified * DDL is classified as i) procedural DMLs
ii) non- procedural DMLs.

25. Match the following : 2

1. MER b. Mars Rover

2. Tesla Autopilot d. An Automatic Driverless Car

3. Sophia a. A Humanoid

4. Alexa c. Personal Assistant

Page 8 of 11
SECTION C
26. 3
Augmented Reality Virtual Reality
The superimposition of computer generated Virtual Reality (VR) is a three-dimensional,
perceptual information over the existing computer-generated situation that simulates
physical surroundings is AR. the real world.

It adds components of the digital world to The user can interact with and explore that
the physical world, with the associated environment by getting immersed in it while
tactile and other sensory requirements interacting with the objects and other actions
making environment interactive & digitally of the user.
manipulable.
Location-based AR apps Gaming, military training, medical,
entertainment, social science, engineering etc.

27. A database management system ensures data security and privacy by providing authorized 3
access privileges only to the authorized person. Grant and revoke permission can be given only
to authorized persons of an organization to gain access to sensitive data.
OR
While choosing a primary kev, it must be ensured that it:
- must uniquely identify the row;
- cannot have NULL values;
- should not change over a period of time;
- should be as short as possible.
28. Cardinality of relation: Number of records or tuples in a relation or table. 3
Degree of a relation: Number of columns or attributes in a relation or table. [1 ½ M each]
29. a. Alter table hospital add address varchar(30); 3
b. Alter table friends drop hobby; [1 ½ M each]

30. a. Hirav, Rajeev 3


b. Sheetal, Rajeev
c. Hirav, Vinayak
SECTION D
31. i. Select * from teacher where category=”PGT”; 4
ii. Select name from gym where gender=”F” and department=”Hindi”;

Page 9 of 11
iii. Select name, department, hiredate from teacher order by hiredate;
iv. DISTINCT(Category)
TGT
PRT
PGT
32. a. Show databases; 4
b. Use City;
c. Drop database Clients;
d. Drop table Club;
OR
d. SQL Server, My SQL, Oracle, Ingres, Postgres (any 2)
SECTION E
33. a. e-textbooks : e-library or web services. 5
b. Smart Boards: used by computer or mobile.
c. Online Tests: Students can give these tests from home.
d. Wi-Fi sensors and classrooms doors: used to lock and unlock them. These sensors also
provides security to students and other stakeholders.
e. Sensors in buses to monitor their location: These sensors enables quick reporting and
monitoring to the coordinates and parents to know the status of child and bus after
leaving the school.
OR
Applications of Artificial Intelligence:-
• AI in Navigation like:- Google map, powered Assistants like:- Google Assistant, Siri
• AI in Robotics, Healthcare, gaming, social media, intelligent robots, NLP, vision systems,
expert system.
34. Big data 5
Big Data - huge volume of data that cannot be stored and processed by any traditional data
storage or processing units. • Big data - voluminous & unstructured - posts, instant msgs,
photographs, blog articles, news items, opinion polls , comments, audio/video chats, etc.
Analysis of big data - business users to make better and faster decisions.
Characteristics of Big Data:
• Volume - huge ‘volumes’ of data - on a daily basis * like social media platforms, business,
machines, networks, human interactions, etc. * stored in data warehouses.

Page 10 of 11
• Velocity - speed at which data is being created in real time. * it comprises the rate of change,
linking of incoming datasets at varying speeds and activity bursts.
• Variety - structured, unstructured and semi-structured data *past - data are collected from
spreadsheets and databases *today- data comes in an array of forms *as emails, PDFs, photos,
videos, audios, SM posts
• Veracity - trustworthiness of the data *processing - incorrect data - wrong results or mislead
interpretations.
• Value - Big data is not only - a big pile of data - possesses hidden patterns & useful
knowledge for high business value.
OR
- Users: varied types, usually a DB administrator, System or Application developers and End users.
 Database Creation
 Database Maintenance
 Database Processing
- Database Application: Personal, Departmental, Enterprise and Internal. It may be general purpose
or customized as per the needs of a user.
- DBMS: Allows users to define, create, access and manage database(s) is termed as a DBMS. For
example, MySQL, Oracle, etc.
- Database: Database is a collection of logical data

35. i. select name, owner, gender from pet where species=’Dog’; 5

ii. select name, owner, age from pet where age>2; 1+

iii. select name, owner, gender, age*2 from pet; 1+

iv. select name, owner from pet where owner like ‘%ya’; 1+

Name Age 1+
v. vi.
Monty 4
½+
Moti 3
½

Page 11 of 11

You might also like