Card 9 / 76: What is the correct import package needed to use the ArrayList class?
A)
import java.awt.*;
B)
import java.io.*;
C)
import java.net.*;
D)
import javax.swing.*;
E)
import java.util.*;
Answer:
E) import java.util.*;
Previous Card | ← Previous Card Button |
Next Card | → Next Card Button |
Flip Card | Space-Bar |
A, B, C and D are incorrect. The import statements in A, B, C, and D import packages that do not contain the ArrayList class.
|