97.8k views
3 votes
Java OOP Fil in the black:To import a class, the keyword _______ must be used after the package statement and before the class declaration. Pick ONE -) insert -) add -) new -) import

User Ketevan
by
7.6k points

1 Answer

6 votes

Final answer:

The keyword 'import' is used to import a class in Java.

Step-by-step explanation:

To import a class in Java, the keyword import must be used after the package statement and before the class declaration. The import keyword allows you to access classes from other packages in your Java program. For example, if you have a class called Example in the package com.example, you can import it using the statement import com.example.Example;.

User Jhleath
by
8.0k points