Multiple choice technology architecture

A variable P is called pointer if

  1. P contains the address of an element in DATA.

  2. P points to the address of first element in DATA

  3. P can store only memory addresses

  4. P contain the DATA and the address of DATA

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

A variable P is called a pointer if it contains the address of an element in DATA. Option A correctly states this fundamental definition - pointers store memory addresses, not the data itself. Option B is incorrect because pointers can point to any element, not just the first. Option C is too restrictive. Option D is wrong because pointers store addresses, not both data and addresses.