1.
A top-to-bottom relationship among the items in a database is established by a :
Correct Answer
A. Hierarchical schema
Explanation
A hierarchical schema establishes a top-to-bottom relationship among the items in a database. In this type of schema, data is organized in a tree-like structure with parent-child relationships. Each parent can have multiple children, but each child can only have one parent. This allows for easy navigation and retrieval of data, but it can be inflexible when it comes to representing complex relationships. Network and relational schemas, on the other hand, do not necessarily establish a top-to-bottom relationship among items in a database.
2.
The level of data abstraction which describes how the data is actually stored is :
Correct Answer
B. pHysical level
Explanation
The physical level of data abstraction describes how the data is actually stored. It deals with the physical representation of data on the storage media, such as the format, organization, and access methods used. This level is concerned with the low-level details of data storage, such as the arrangement of data blocks, file structures, and storage devices. It is responsible for translating the logical view of data into the physical representation that can be stored and manipulated by the computer system.
3.
Collection of information stored in a database at a particular moment is :
Correct Answer
C. Instance
Explanation
The term "instance" refers to a specific snapshot or representation of data stored in a database at a particular moment. It represents the actual collection of information that exists at a given time. A database can have multiple instances, each representing a different state or version of the data. This term is commonly used in database management systems to differentiate between the overall structure (schema) and the actual data (instance) stored within the database.
4.
DBA stands for :
Correct Answer
D. Database Administrator
Explanation
DBA stands for Database Administrator. A Database Administrator is responsible for managing and maintaining a database system. They ensure the security, performance, and availability of the database, as well as handle data backup and recovery. They also handle tasks such as database design, configuration, optimization, and troubleshooting. The role of a DBA is crucial in ensuring that the database operates efficiently and effectively to meet the needs of the organization.
5.
Between the users and the database itself, a DBMS will act as :
Correct Answer
B. Interface
Explanation
A DBMS (Database Management System) acts as an interface between the users and the database itself. It allows users to interact with the database by providing a set of functions and commands to retrieve, manipulate, and manage data. The DBMS acts as a mediator, translating user requests into database operations and ensuring that the data is accessed and modified correctly. It provides a simplified and organized way for users to interact with the complex underlying database, making it easier to retrieve and update information.
6.
A schema describes :
Correct Answer
C. Record and files
Explanation
A schema describes the structure and organization of data in a database. It includes information about the record and file formats, relationships between records, and the data elements within each record. Therefore, the correct answer is "Record and files."
7.
Which one is lowest level data model ?
Correct Answer
A. pHysical data model
Explanation
The physical data model is the lowest level data model because it represents the actual implementation of the database on a physical storage medium, such as a hard drive. It defines the specific data types, storage structures, and indexing mechanisms used to store and retrieve data. The physical data model is closely tied to the hardware and software environment in which the database operates, and it is used by database administrators and developers to optimize performance and manage the physical storage of data.
8.
Data are :
Correct Answer
A. Raw facts and figures
Explanation
Data refers to raw facts and figures that are collected or observed. It is the unprocessed and unorganized information that is typically in the form of numbers, text, or symbols. Data can be collected from various sources and can be used to derive meaningful insights and information through analysis and interpretation. Therefore, the answer "Raw facts and figures" accurately describes what data represents.
9.
DBMS is used to :
Correct Answer
D. All of the above
Explanation
DBMS (Database Management System) is a software that is used to efficiently manage and organize large amounts of data. It eliminates data redundancy by storing data in a centralized location, reducing the chances of data inconsistencies. It maintains data integrity by enforcing rules and constraints on the data, ensuring its accuracy and reliability. Additionally, DBMS helps establish relationships among different files or tables, allowing for efficient data retrieval and analysis. Therefore, the correct answer is "All of the above" as DBMS encompasses all these functionalities.
10.
A set of objects that share a common structure and a common behavior is called :
Correct Answer
B. Class
Explanation
A class is a set of objects that share a common structure and behavior. It serves as a blueprint or template for creating objects. Objects created from a class have similar properties and methods defined in the class. They can also interact with each other through these methods. Therefore, a class is the correct answer in this context.
11.
The data dictionary tells the DBMS :
Correct Answer
D. All of the above
Explanation
The data dictionary is a crucial component of a database management system (DBMS) as it provides information about the database. It includes details about the files present in the database, the attributes possessed by the data, and the contents of these files. By having this information, the DBMS can effectively manage the database, ensure data integrity, and facilitate data retrieval and manipulation. Therefore, the correct answer is "All of the above."
12.
The logical data structure with a one-to-many relationship is a :
Correct Answer
B. Tree
Explanation
A tree is a logical data structure that represents a one-to-many relationship. In a tree, there is a single root node that has multiple child nodes, but each child node can only have one parent node. This hierarchical structure allows for easy navigation and organization of data, making it suitable for representing relationships such as parent-child or category-subcategory. Therefore, a tree is the correct answer for the given question.
13.
Data processing comprises of :
Correct Answer
D. All of the above
Explanation
Data processing comprises of capturing, storing, updating, and retrieving data. Capturing data refers to the process of collecting and inputting data into a system. Storing data involves saving the captured data in a structured manner for future use. Updating data means making changes or modifications to the stored data when required. Retrieving data involves accessing and extracting specific information from the stored data. Therefore, the correct answer is "All of the above" as it encompasses all the mentioned activities involved in data processing.
14.
The highest level in the hierarchy of data organization is called :
Correct Answer
B. Database
Explanation
The highest level in the hierarchy of data organization is called a database. A database is a collection of organized and structured data that can be accessed, managed, and manipulated. It is designed to store large amounts of information and provide efficient retrieval and storage mechanisms. A database can include multiple data files, data records, and data banks, but it is the overall structure that encompasses all these elements.
15.
File is the collection of all related :
Correct Answer
B. Records
Explanation
A file is a collection of related records. Records are individual units of data that are organized within a file. Therefore, a file consists of multiple records that are related to each other in some way.
16.
Which one of the following provides the ability to query information from the database and to insert tuples into, delete tuples from, and modify tuples in the database?
Correct Answer
A. DML(Data Manipulation Langauge)
Explanation
DML (Data Manipulation Language) is the correct answer because it provides the ability to query information from the database and perform various operations such as inserting, deleting, and modifying tuples in the database. DML commands like SELECT, INSERT, UPDATE, and DELETE are used to manipulate data stored in the database. DDL (Data Definition Language) is used to define the structure and schema of the database, while a query is a request for data retrieval from the database. A relational schema represents the structure and organization of the database.
17.
Create table employee (name varchar ,id integer) What type of statement is this
Correct Answer
B. DDL
Explanation
This statement is a Data Definition Language (DDL) statement. DDL statements are used to define or modify the structure of database objects, such as tables, views, and indexes. In this case, the statement is creating a new table called "employee" with two columns: "name" of type varchar and "id" of type integer. DDL statements are used to create, alter, or drop database objects, while Data Manipulation Language (DML) statements are used to retrieve, insert, update, or delete data from the database.
18.
An advantage of the database management approach is
Correct Answer
C. Data is integrated and can be accessed by multiple programs.
Explanation
The advantage of the database management approach is that data is integrated and can be accessed by multiple programs. This means that different programs can access and manipulate the same data, allowing for better data consistency and reducing the need for data duplication. This integration also improves data availability and accessibility, as multiple users or programs can retrieve and update the data simultaneously.
19.
A DBMS query language is designed to
Correct Answer
D. All of the above.
Explanation
A DBMS query language is designed to support end users who use English-like commands, as it provides a user-friendly interface that allows users to easily interact with the database using familiar language. It also supports in the development of complex applications software, as it provides a set of commands and functions that can be used to manipulate and retrieve data from the database, allowing developers to build sophisticated applications. Additionally, it can specify the structure of a database, as it includes commands for creating, modifying, and deleting tables, indexes, and other database objects. Therefore, the correct answer is "All of the above."
20.
Which database level is closest to the users?
Correct Answer
A. External
Explanation
The external database level is closest to the users. This level focuses on providing a user-friendly interface and presenting data in a format that is easily understandable by users. It involves defining views, which are customized representations of data, and controlling user access to the database. The external level allows users to interact with the database without needing to understand the underlying data structures and organization.
21.
The language which has recently become the defacto standard for interfacing application programs with relational database system is
Correct Answer
B. SQL.
Explanation
SQL (Structured Query Language) is a programming language that is commonly used for managing and manipulating data in relational database systems. It has become the de facto standard for interfacing application programs with relational database systems due to its simplicity, flexibility, and wide support across different database platforms. SQL allows developers to write queries, perform data manipulation operations, and retrieve data from databases, making it an essential language for interacting with relational databases.