Completion requirements
View
Make forum posts: 1
Define a package named "MyPack" and create class "person" inside this package. Person class has two properties ID and name which are private. You have to create another package "Pack" where you have a class Employee which want to use the person two properties ID and name. Will the "pack" package can call them?
Write the program and explain.