Multiple choice technology programming languages

RandomAccess interface is found in

  1. java.io

  2. java.util

  3. javax.xml.stream

  4. java.io.*

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

The RandomAccess interface is part of the java.util package in Java Collections Framework. It's a marker interface used by List implementations to indicate that they support fast (generally constant time) random access to elements, like ArrayList.