Which is not a type of Standard Internal table?
-
Index Table
-
Hashed table
-
Sorted Table
-
Standard Table
SAP ABAP defines three Standard Internal Table types: Standard Table (default, unsorted), Sorted Table (automatically sorted by key), and Hashed Table (accessed by hash algorithm). 'Index Table' is not a separate table type - it's a category that includes Standard and Sorted tables which can be accessed by index. The question asks what is NOT a type.
To answer this question, you need to understand the different types of standard internal tables in computer programming.
Let's go through each option to understand why it is correct or incorrect:
Option A) Index Table - This option is incorrect because an index table is a type of standard internal table. It allows for fast access to table entries using a unique key.
Option B) Hashed table - This option is incorrect because a hashed table is a type of standard internal table. It uses a hash function to store and retrieve table entries, providing fast access.
Option C) Sorted Table - This option is incorrect because a sorted table is a type of standard internal table. It maintains its entries in a sorted order based on a key field, allowing for efficient searching and retrieval.
Option D) Standard Table - This option is correct because it is a type of standard internal table. It stores table entries in an arbitrary order and does not provide any special features like indexing or sorting.
The correct answer is D) Standard Table. This option is correct because it is not a type of standard internal table.
Therefore, the correct answer is D.