Database Past Paper Short Question
Database Past Paper Short Question
Short Questions
1. What is SQL?
SQL: (Structured Query Language)
It is a simple data sub language. It means that it only has language statements for database
definition and processing SQL was developed by INTERNATIONAL BUSINESS MACHINE (IBM). It is
further introduced by AMERICAN NATIONAL STANDARD INSTITUTE (ANSI). A new standard SQL3 also
exists but widely used version of SQL is ANSISQL-92.
2. What is Database?
Database:
Database is a collection of information that is stored in an organized way so that it can easily be
accessed, managed and updated.
3. Define Design View.
Design View:
A Design View is the view of the table in which table is designed and fields are specified as well
as their data types are also specified.
4. What is MS Access?
MS Access:
Microsoft Access is a database management system from Microsoft that combines the
relational Access Database Engine with a graphical user interface and software-development tools. It
can also import or link directly to data stored in other applications and databases.
5. What is Primary Key?
Primary Key:
A Primary Key is candidate that is selected by database designer to identify a record uniquely in
a relation.
Some important points of primary key are as follows:
i. A relation can have only one primary key.
ii. Primary key does not allow duplicate value.
iii. It cannot contain NULL value.
6. What is meant by DCL?
DCL: (data control language)
Data Control Language is used to access the stored data. It mainly used for revoke and to grant
the user the required access to a database. In particular, it is a component of Structured Query
Language (SQL).
7. Define E-R Modeling.
Entity Relation Model: (E-R Model)
E-R model is a logical representation of data in an organization. It views the entire system as a
collection of entities related to each other. It is used to describe the element of the system and their
relationship.
8. Define Data Access Pages.
Data Access Pages:
A data access page is a web page that shows records from a database. Users can view, sort,
filter, create and update the records in a database on a web or network server.
OR
A data access page is a Web page that is designed to let you view and work with data from internet or
an intranet. This data is typically stored in an Access database.
9. Define Currency Data Type.
Currency Data Type:
This data type is used to store number as currency. The value in currency field is rounded to
two decimal places. The negative currency values are displayed in small character like salary, fee and
bill.
10. Define Integrity Constraints.
Integrity Constraints:
In Database Management System, integrity constraints are pre-defined set of rules that are
applied on the table fields (columns) or relations to ensure that the overall validity, integrity, and
consistency of the data present in the database table is maintained.
11. Why Update Query is used?
The UPDATE query is a type of action query which is used to modify the existing records in a table.
12. How do field and record differ?
Fields/Attributes Record/Tuple
A single unit of information in a table or A set of data values in a table organized in a
entity is called field or attribute. Simply we row is called Record or Tuple.
can say that combination of data organized
in a column and column heading is called
Field.