//Demo package p1. package p1; //Instantiate the various classes in p1. public class DemoP { public static void main(String[] args) { Protection ob1 = new Protection(); Derived ob2 = new Derived(); SamePackage ob3 = new SamePackage(); } }