Is using
import java.util.*
not favorable compared to calling on the specific packages? I was wondering if its significantly inefficient to a program to call on all the packages, rather than listing them out specifically such as:
import java.util.Scanner;
import java.util.Math;
etc. I am preparing for interviews and want to make sure I have good coding practices.