What is the effect of the following import statement?
```
import java.awt.*;
```
This statement allows the program in which it is written to access all classes (because of the wildcard *) in the package java.awt without any further reference to the package name.
Computer Science & Information Technology