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
5
Answer:
import pack2.Project;
Answered by
0
Answer:
import pack2.Project;
Explanation:
Similar questions