Which value of a stack is accessible?

The top item
  • The front item
  • The root
  • The bottom item
  • The rear item
  • The highest-valued item
  • The lowest-valued item

Stacks do not care about the relative order of the values for the items it stores.

A stack gives access only to the last item that was inserted.

This is called the "top" item.