1. SAP Help Portal
ABAP Keyword Documentation - READ TABLE - itabkey:
For Sorted Tables: "If the specified components form a left-aligned part of the table key
the search is binary... If not
the search is linear
as in standard tables." This supports answers A and B.
For Hashed Tables: "When a hashed table is accessed using WITH TABLE KEY
all components of the table key must be specified... The search uses the hash algorithm of the internal table." This supports answer E and invalidates D.
For Standard Tables: "The search is linear. The runtime is in linear relation to the number of table rows." This invalidates answer C.
2. SAP Help Portal
ABAP Keyword Documentation - TYPES - TABLE OF:
Section on WITH ... KEY: This documentation details the definition and access characteristics of each table kind. It explicitly states that sorted keys allow binary searches on initial parts of the key
while hashed keys require a full key specification for hash access. This provides foundational knowledge supporting the correct answers.