How many of them (a.i, a.j, a.k, b.i, b.j and b.k) can be pr…

Questions

Hоw mаny оf them (а.i, а.j, a.k, b.i, b.j and b.k) can be printed in the questiоn mark area? [ans] Click to Show Image Description Left code block package p1; public class A {    int i = 5;    private int j = 10;    protected int k = 15;} Right code block package p2; import p1.*; public class B extends A {    public static void main(String[] args) {        A a = new A();        B b = new B();        System.out.println(?);    }}