When I wrote
import java.util.*;
at the beginning and
System.out.println(new Date());
in the main part, I am getting an output like this
Date@124bbbf
when I changed the import to import java.util.Date; it works perfectly. Can someone tell me the difference between the two import st