Question based Java programs and OOPS like inheritance based tricky questions.
Rest api Automation related scenario based questions.
Main {
psv main(String[] args){
Parent p = new Child();
a) p.show();//Inside Parent show
b) p.show1();//Inside Parent show1
c) p.display();//Inside child display
d) System.out.println(p.x);//10
}