Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS

Balbharati Maharashtra State Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS Textbook Exercise Questions and Answers.

Maharashtra State Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS

1. Complete the following activity.

Question 1.
Tick whichever box is not valid.
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 1 Q1
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 1 Q1.1

Question 2.
The student wants to create a field Pincode in a table, which data type he will choose?
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 1 Q2
Answer:
Int

Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS

Question 3.
Tick the appropriate box.
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 1 Q3
Answer:
Uniquely identifies a record

Question 4.
Tick the appropriate circle.
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 1 Q4
Answer:
One or Many Tables

2. Observe the field names of a database given below in ‘Column A’ related to Bus reservation. Write suitable data types for each field in front of the respective field in ‘Column B’.

Question 1.
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 2 Q1
Answer:

Column A (Field Name) Column B (DataType)
Passenger Name Varchar
Age Int
Gender Char
Mobile Number Int

Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS

3. Write the use of the following SQL command.

Question 1.
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 3 Q1
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 3 Q1.1

4. Create a table for the information given below by choosing appropriate data types. Specify proper primary key for the table (1) Movie (2) Actor

Question 1.
Movie (Registeration_no, movie_name, Realease_Date)
Answer:
CREATE TABLE Movie (Registeration_no int(20) PRIMARY KEY, movie_name VARCHAR(20), Realease_Date DATE);

Question 2.
Actor (actor_id, Actor_name, birth_date )
Answer:
CREATE TABLE Actor (actor_id int(20) PRIMARY KEY, Actor_name VARCHAR(20), Birth_Date DATE);

5. Consider the following table Stationary. Write SQL commands for the following statements.

Table: Stationary
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 5 Q1

Question 1.
Write SQL command to create above Table.
Answer:
CREATE TABLE Stationary (S_ID int(20) PRIMARY KEY, S_Name VARCHAR(20), C_Name VARCHAR(20), Price int(20), Quantity int(20));

Question 2.
Write SQL command to insert the above-mentioned record in the table.
Answer:
INSERT INTO Stationary Values (001, ‘Note Book’, ‘ABC’, 20,50);
INSERT INTO Stationary Values (002, ‘Note Book’, ‘XYZ’, 10,80);
INSERT INTO Stationary Values (003, ‘Note Book’, ‘PQR’, 600,02);

Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS

Question 3.
To delete the above table.
Answer:
DROP TABLE Stationery;

6. Answer the following questions.

Question 1.
What is a database?
Answer:
A DBMS is a collection of programs (computer-based system) that enables the user to create and maintain a database it is used to define, construct and manipulate the data in the database for various applications. It provides information storage, organization, and retrieval capabilities. The DBMS also enforces necessary access restrictions and security measures in order to protect the database.

Various types of control systems within the DBMS make sure that the database continues to function properly. They Include Integrity system Security system Concurrency control system Recovery control system Some DBMS enables us to define “views” of the database. A view is how the database appears to the user. This enables us to show only the relevant information to different types of users and it increases security, as certain users will not be able to see data which they are not meant to see.

Question 2.
What are the advantages of a DBMS?
Answer:
Advantages of a DBMS:
1. Redundancy is controlled: In File Processing System, duplicate data is created in many places because all the programs have their own files. This creates data redundancy which in turn wastes labor and space. ‘In Database Management System, all the files are integrated into a single database. The whole data is stored only once in a single place so there is no chance of duplicate data.

2. Sharing of Data: In a database, the users of the database can share the data among themselves. There are various levels of authorization to access the data. And consequently, the data can only be shared based on the correct authorization protocols being followed.

3. Data Security: Data Security is a vital concept in a database. Only authorized users should be allowed to access the database and their identity should be authenticated using a username and password. Unauthorized users should not be allowed to access the database under any circumstances as it violates the integrity constraints.

4. Enforces integrity constraints: Constraints are used to store accurate data because there are many users who feed data in the database. Data stored in the database should always be correct and accurate. DBMS provides the capability to enforce these constraints on the database.

5. Provides backup and recovery of data: Data loss is a very big problem for all organizations. In a traditional tile processing system, a user needs to back up the database after a regular interval of time that wastes lots of time and resources. If the volume of data is large then this process may take a very long time.

Question 3.
What do you understand by Data Model?
Answer:
A Database model defines the logical design and structure of a database and defines how data will be stored, accessed, and updated in a database management system. While the Relational Model is the most widely used database model.

Relational Model:
It is the most popular data model in DBMS. The relational model is the primary data model. Which is widely used for data processing. This model has all properties required to Process data with storage efficiency.

Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS

Question 4.
What is a primary key?
Answer:
Primary Key: A column in the table that uniquely identifies each row in that table is called a primary key.

Question 5.
What is DDL (Data Definition Language)
Answer:
DDL statements or commands are used to define and modify the database structure of your tables or schema. When you execute a DDL statement, it takes effect immediately.
Some examples of DDL commands are CREATE, ALTER, and DROP.

7. In a company the data is stored in a table under the following fields Employee number, Last name, Date of birth, Address. Which data type will you use for the above field?

Question 1.
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 7 Q1
Answer:

Field Name Data Type
Employee Name Char
Last Name Char
Address Varchar
Date of Birth Date

8. Multiple choice select three correct answers.

Question 1.
Valid relationships in RDBMS are
(a) one to one
(b) one to two
(c) one to many
(d) many to two
(e) many to many
(f) one to three
Answer:
(a) one to one, (c) one to many, (e) many to many

Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS

9. Complete the following.

Question 1.
Maharashtra Board Class 11 Information Technology Solutions Chapter 2 Introduction to DBMS 9 Q1
Answer:

Use Command
To remove access rights or privileges from the database Revoke
Extracts data from a table Insert into Select

Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology

Balbharati Maharashtra State Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology Textbook Exercise Questions and Answers.

Maharashtra State Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology

1. Complete the following activity.

Question 1.
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 1 Q1
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 1 Q1.1

Question 2.
Tick the appropriate box.
Internet is a ____________ network connecting millions of computer.
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 1 Q2
Answer:
Global

Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology

Question 3.
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 1 Q3
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 1 Q3.1

Question 4.
Tick the appropriate box.
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 1 Q4
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 1 Q4.1

Question 5.
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 1 Q5
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 1 Q5.1

Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology

2. Divide the following list of devices into appropriate categories.

Question 1.
Monitor, Barcode reader, Printer, Keyboard. Optical character reader, Speaker
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 2 Q1
Answer:

Categories Names
Input Devices Barcode reader, Keyboard, Optical Character reader
Output Devices Monitor, Printer, Speaker

3. Multiple choice two correct answers.

Question 1.
The primary memory consists of ____________ and ____________
(a) Pendrive
(b) Hard Disk
(c) RAM
(d) Scanner
(e) ROM
Answer:
(c) RAM, (e) ROM

Question 2.
The network architectures which are widely used are ____________
(a) Server
(b) Client
(c) Peer to peer
(d) Client-server
(e) Internet
Answer:
(c) Peer to peer, (d) Client-server

4. Match the following.

Question 1.

1. IS (a) change directory
2. FTP (b) Translates Network Address
3. CD (c) List of Directory
4. DNS (d) To transfer file on interent

Answer:

1. IS (c) List of Directory
2. FTP (d) To transfer file on interent
3. CD (a) change directory
4. DNS (b) Translates Network Address

5. Name the following and complete the diagram.

Question 1.
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 5 Q1
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 5 Q1.1

6. Complete the following with Linux commands with their use.

Question 1.
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 6 Q1
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 6 Q1.1

Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology

7. Complete the list of the following protocols.

Question 1.
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 7 Q1
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 7 Q1.1

8. Complete the following Long form.

Question 1.
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 8 Q1
Answer:
Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology 8 Q1.1

9. Identify the following activity.

Question 1.
You are typing a letter using a computer and suddenly there is a power failure.
Which type of Memory does this activity deal with?
Answer:
Random Access Memory

10. Answer the following.

Question 1.
What are Data and Information? Give examples of data and information.
Answer:
Data can be any character, text, word, number, or raw facts.
Example of Data:
Mumbai, 1234, Aditya, MG Road, Maharashtra, 9444444441, 411004

Information is data formatted in a manner that allows it to be utilized by human beings in some significant way.
Example of Information:
Aditya, 1234, MG Road, Mumbai 400004, Maharashtra, 944444444114.

Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology

Question 2.
Explain functional units of a computer system.
Answer:
The computer system has the following three basic components:
Input Unit:
An input device is any hardware device that sends data to a computer, allowing you to interacts with and controls it. Data can be in the form of words, symbols, numbers, etc. The function of the input device is to direct commands and data into the computer.
For example keyboard, mouse, scanners, digital cameras, joysticks, and microphones.

Central Processing Unit:
After receiving data and commands from the user, a computer system has to process the instructions provided using Central Processing Unit (CPU). It has three elements:

(a) Arithmetic and Logic Unit: An arithmetic logic unit (ALU) is a major component of the central processing unit of a computer system. It does all processes related to arithmetic and logic operations like add, subtract, multiply, etc.

(b) Control Unit: The control unit (CU) is a component of a computer’s central processing unit (CPU) that directs the operation of the processor. It tells the computer’s memory, arithmetic, and logic unit, and input and output devices how to respond to the instructions that have been sent to the processor.

(c) Memory Unit: A memory unit is the amount of data that can be stored in the storage unit. Once the data has been entered using input devices, the system stores the data in the memory unit.

Types of Memory: Primary Memory & Secondary Memory.

  • Primary Memory: It has 18 internal memory of the computer also known as main memory. It is of two types RAM and ROM.
  • RAM (Random Access Memory): RAM stands for Random Access Memory also known as reading/write memory. Information stored in this memory is lost as the power supply to the computer is switched off; it is also called “Volatile Memory”.
  • ROM(Read Only Memory): ROM stands for Read-Only Memory. ROM is a permanent type of memory. The contents are not lost as the power supply to the computer is switched off. ROM cannot be overwritten by the computer. It is also called “Non Volatile Memory”.
  • Secondary Memory: It is the external memory of the computer which is used to store a large amount of data. The secondary storage devices are a Hard disk, Pen drive, CD, DVD, etc.

Output Unit:
An output device is any device used to send data from a computer to another device or user. Most computer data output that is ‘meant for humans is in the form of audio or video. Thus, most output devices used by humans are in these categories. Examples include monitors, projectors, speakers.

Question 3.
What is a storage unit? Explain types of primary memory storage.
Answer:
When a user enters data using input devices, the computer system stores this data in a memory unit i.e. storage unit. The storage unit uses a set of pre-programmed instructions to further transmit this data to other parts of the CPU. There are two types of memory

  • Primary Memory
  • Secondary Memory

RAM: It stands for Random Access Memory. RAM is known as reading/write memory. It is the main memory of the computer system. The information stored in this memory is lost as the power supply to the computer is switched off, so it is also called as “Volatile Memory”.

ROM: It stands for Read-Only Memory. ROM is permanent memory. The content is not lost when the power supply is switched off. ROM cannot be overwritten by the computer, so it is also called “Non-Volatile Memory”.

Maharashtra Board Class 11 Information Technology Solutions Chapter 1 Basics of Information Technology

Question 4.
Explain how Linux is different from Windows.
Answer:

  • Linux is open sources system whereas the window operating system is commercial.
  • Linux has access to source code and alters the code as per user need whereas a window does not have access to source code.
  • Linux distribution doesn’t collect user data” whereas Windows collects all the user details which leads to privacy concerns.
  • As the software is open to the public, it constantly updates, improves, and expands as more people can work on its improvement.

Question 5.
Write down the difference between LAN, MAN, and WAN.
Answer:

LAN (Local Area Network) MAN (Metropolitan Area Network) WAN (Wide Area Network)
LAN Stands for Local Area Network. MAN stands for Metropolitan Area Network. WAN stands for Wide Area Network.
A LAN is a network of connected devices that exist within a specific location. A public or private network is used to connect various locations including suburbs in metropolitan cities. A WAN is any network that crosses metropolitan, regional, or national boundaries.
LANs may be found in homes, offices, educational institutions, or other areas. A MAN is a network, which covers an entire city, but uses LAN topology. Most networking professionals define a WAN as any network that uses routers and public network links (e.g. Telephone lines).
LAN is easy to set up. MANs are formed by connecting multiple LANs. Due to long-distance transmission, the noise and errors are more in WAN.
Data transmits at a very fast rate. Examples of a MAN are the cable TV network in a city. The best example of WAN is the Internet.

Maharashtra State Board Class 11 Chemistry Solutions Digest

Maharashtra State Board 11th Std Chemistry Textbook Solutions Digest

Maharashtra State Board Class 11 Textbook Solutions

Maharashtra State Board Class 11 Maths Solutions Book Pdf Part 1 & 2 | Std 11th Science Maths Digest

11th Maths Digest Pdf Science, Maharashtra State Board HSC 11th Science Maths Digest Pdf, Maharashtra State Board 11th Maths Book Solutions Pdf, Maharashtra State Board Class 11 Maths Solutions Pdf Part 1 & 2 free download in English Medium and Marathi Medium 2021-2022.

Maharashtra State Board 11th Maths Textbook Solutions Digest Guide

Maharashtra State Board Class 11 Maths Solutions Pdf Part 1

Maharashtra State Board Class 11 Maths Solutions Pdf Chapter 1 Angle and its Measurement

Maharashtra State Board 11th Maths Book Solutions Pdf Chapter 2 Trigonometry – I

Maharashtra State Board 11th Maths Textbook Chapter 3 Trigonometry – II

11th Science Maths Chapter 4 Determinants and Matrices

11th Std State Board Maths Solution Book Pdf Chapter 5 Straight Line

11th State Board Maths Solution Book Pdf Free Download Chapter 6 Circle

11th Maths Digest Pdf Science Chapter 7 Conic Sections

11th Maharashtra State Board Maths Solution Book Pdf Part 1 Chapter 8 Measures of Dispersion

11th Maths Book Solutions State Board Chapter 9 Probability

Maharashtra State Board 11th Maths Book Solutions Pdf Part 2

Maths Digest Std 11 Science Pdf Chapter 1 Complex Numbers

Maths Solutions for Class 11 State Board Chapter 2 Sequences and Series

Std 11 Maths Digest Chapter 3 Permutations and Combination

11 Std Maths Book Pdf Chapter 4 Methods of Induction and Binomial Theorem

State Board 11th Maths Book Answers Chapter 5 Sets and Relations

11th Maths Practical Handbook Pdf Chapter 6 Functions

11th Maths Solution Book Pdf Download Chapter 7 Limits

11th Standard State Board Maths Guide Chapter 8 Continuity

11th Std Maths Guide Free Download Chapter 9 Differentiation

Maharashtra State Board Class 11 Textbook Solutions

Maharashtra State Board 11th Commerce Maths Solutions Book | Std 11 Commerce Statistics Part 1 & 2 Digest Pdf

Maharashtra State Board HSC 11th Commerce Mathematics and Statistics Digest Pdf, 11th Commerce Maharashtra State Board Maths Solution Book Pdf Part 1 & 2 free download in English Medium and Marathi Medium 2021-2022.

Maharashtra State Board 11th Commerce Maths Digest Pdf

11th Maths Part 1 Digest Pdf

11th Maths 1 Digest Pdf Chapter 1 Sets and Relations

Mathematics and Statistics Commerce Part 1 Chapter 2 Functions

11th Maths Part 1 Digest Pdf Chapter 3 Complex Numbers

11th Commerce Maths Solutions Chapter 4 Sequences and Series

Maths Commerce Class 11 Chapter 5 Locus and Straight Line

Maths in Commerce 11th Chapter 6 Determinants

Class 11 Commerce Maths Part 1 Chapter 7 Limits

Commerce Maths Class 11 Chapter 8 Continuity

11th Commerce Maths 1 Textbook Pdf Chapter 9 Differentiation

11th Commerce Maths Solution Book Pdf Part 2

11th Commerce Maths Book Pdf Chapter 1 Partition Values

Class 11 Commerce Maths Book Chapter 2 Measures of Dispersion

11th Commerce Maths Textbook Pdf Chapter 3 Skewness

Maths Class 11 Commerce Chapter 4 Bivariate Frequency Distribution and Chi Square Statistic

Maths 11th Commerce Chapter 5 Correlation

Commerce Maths Book Class 11 Chapter 6 Permutations and Combinations

Class 11 Maths Commerce Book Chapter 7 Probability

11 Commerce Statistics Solutions Chapter 8 Linear Inequations

11th Maths Part 1 Digest Pdf Chapter 9 Commercial Mathematics

Maharashtra State Board Class 11 Textbook Solutions

Maharashtra State Board Class 11 Physics Solutions Digest

Maharashtra State Board 11th Std Physics Textbook Solutions Digest

Maharashtra State Board Class 11 Textbook Solutions

Maharashtra State Board Class 11 Biology Solutions Digest

Maharashtra State Board 11th Std Biology Textbook Solutions Digest

Maharashtra State Board Class 11 Textbook Solutions

Maharashtra State Board Organisation of Commerce and Management 11th Solutions Digest

Maharashtra State Board OCM 11th Commerce Textbook Solutions Digest

Maharashtra State Board Class 11 Textbook Solutions

Maharashtra State Board Class 11 Secretarial Practice Solutions Digest

Maharashtra State Board 11th Std Secretarial Practice Textbook Solutions Digest

Maharashtra State Board Class 11 Textbook Solutions

Maharashtra State Board Class 11 Textbook Solutions Answers Digest

Maharashtra State Board 11th Std Textbook Solutions Answers Digest

Maharashtra Board Solutions