If an ArrayQueue is stored an array named contents and has 1 unused element, which of the following is false:

If size represent the number of elements in the arrayqueue then its range is 0 <= size <= contents.length
  • contents.length - 1 indicates the capacity of the queue
  • If size represent the number of elements in the arrayqueue then its range is 0 <= size < contents.length

There are no hints for this question