Computer Science, asked by sameerchachiya68, 1 month ago

Assume there is a class Employee in package pack1 and this class is dependent on Project class which is in package pack2. Which statement should be included in Employee class?
import pack1. Project;
import pack2.Poject.*;
import pack2.Project;
import pack1. Project.*;​

Answers

Answered by simonsaikia9
5

Answer:

import pack2.Project;

Answered by hitmaner11
0

Answer:

import pack2.Project;

Explanation:

Similar questions