Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

general

Former Member
0 Likes
421

Which of the following is not a true statement in regard to a hashed internal table type?

A: Its key must always be UNIQUE.

B: May only be accessed by its key.

C: Response time for accessing a row depends on the number of entries in the table.

😧 Declared using internal table type HASHED TABLE.

2 REPLIES 2
Read only

Former Member
0 Likes
401

hi manjula,

ans: A.

regards,

seshu.

Read only

Former Member
0 Likes
401

Hi,

Ans : A.

Hashed tables have no linear index. You can only access a hashed table using its key. The

response time is independent of the number of table entries, and is constant, since the system

access the table entries using a hash algorithm. The key of a hashed table must be unique.

When you define the table, you must specify the key as UNIQUE.

Regards,

Bhaskar