10 Iti
10 Iti
Information is the data that has been organized and processed. Information relies on data.
Q2. What do you mean by database? Explain.
Ans-A database is collection of interrelated data and set of procedures to access the data.
Ans- A Table is a collection of records that can be divided into fields. Each field holds a single piece of
information.
Q4.How can you organize a table?
Ans- A table is organized in the form of Rows and Columns
Q8. What are difference between field and record?
Ans- A field is raw fact and figure where A record is a collection of fields.
Q9. What do you mean by query?
Ans- A query is a statement that gives us filtered data according to our condition.
Ans- A form is an interface in user specified layout that lets users view, enter changes data directly in the
table.
Q11. What do you mean by Database Management System?
Ans- Database Management System or DBMS is computer program that manages a database effectively and
efficiently. Ex- BASE, MsAccess, MySQL
Q12. How can you create a database?
Click on start->openofffice-> Openoffice base-> Select create new database option ->Finish then provide a
database name and save it.
Q13. Write down the steps in creating a new table in design view.
Ans- After creating database then select Table menu then select Design view then provide fields name and
data type then set primary key and save the table.
Q14. How can you create query in the database?
Ans-Select Query object->Select Create query in design view-> select and table -> select required fields and
set the criteria and name the query.
Q15. What do you mean by primary key?
Ans-A primary key is a set of one or more fields that can uniquely identify record within table.
Ans- DBA is a person ,who is responsible for designing , creating and maintaining the database to satisfy the
needs of users. All access to the database is controlled by them using DBMS/RDBMS.
Q17. What do you mean by Data Redundancy?
Ans-
i) Database reduce data redundancy
ii) Database can control data inconsistency
iii) Database facilitate sharing of data
iv) Database enforce standards
v) Database can ensure data security
Q20. What is SQL?
Ans-SQL stands for Structure Query Language, It is a language that enables us to create and operate on
relational databases, which are set of related information stored in tables.
Q21. Explain DDL,DML,TCL
Ans-
DDL- Data Definition Language , allow us to perform task related to Data definition Ex- Create, Drop
DML- Data Manipulation Language , allow us to manipulation in database. Ex- Select, Update, Delete, Insert
TCL- Transaction Control Language , allow us to control transaction. Ex- Commit, Rollback
Q22. What is Foreign Key ?
Ans-A FOREIGN KEY is a key used to link two tables together. A FOREIGN KEY is a field (or collection of fields)
in one table that refers to the PRIMARY KEY in another table. The table containing the foreign key is called the
child table, and the table containing the candidate key is called the referenced or parent table.
Q23 Difference between DBMS and RDBMS
Ans- i) Char- stores fixed length data , Varchar- store variable length data.
ii) char- Length varies from 0-255,Varchar- length varies from 0-65535
iiI)char-static memory allocation, Varchar- Dynamic memory allocation