...
Database-Management-System
August 29, 2024
Database-Management-System
August 29, 2024
Database-Management-System
August 29, 2024
Database-Management-System
August 29, 2024

Database-Management-System

Question 402
In clustering index, the number of index entries is same as the number of:
A
Attributes in data file
B
Records in data file
C
Blocks in data file
D
Distinct index field values
Question 402 Explanation: 
An Index is a key built from one or more columns in the database that speeds up fetching rows from the table or view.
Cluster index is a type of index which sorts the data rows in the table on their key values. In the Database, there is only one clustered index per table.
A clustered index defines the order in which data is stored in the table which can be sorted in only one way. So, there can be an only a single clustered index for every table.
In an RDBMS, usually, the primary key allows you to create a clustered index based on that specific column.
Correct Answer: D
Question 402 Explanation: 
An Index is a key built from one or more columns in the database that speeds up fetching rows from the table or view.
Cluster index is a type of index which sorts the data rows in the table on their key values. In the Database, there is only one clustered index per table.
A clustered index defines the order in which data is stored in the table which can be sorted in only one way. So, there can be an only a single clustered index for every table.
In an RDBMS, usually, the primary key allows you to create a clustered index based on that specific column.

Leave a Reply

Your email address will not be published. Required fields are marked *