Final answer:
Yes, the given statement import .Scanner; is an explicit import.
Step-by-step explanation:
Yes, the given statement import .Scanner; is an explicit import.
In Java, when you import a class, you can either use an explicit or wildcard import. An explicit import is used to import a specific class or classes from a package.
The given statement import .Scanner; imports the Scanner class explicitly from the current package. The dot before the class name indicates that the class is present in the same package as the file where the import statement is written.