Which statements are most accurate regarding the following classes?

```
class A {
private int i;
protected int j;
}

class B extends A {
private int k;
protected int m;

// some methods omitted
}
```
a. In the class B, an instance method can only access i, j, k, m.
b. In the class B, an instance method can only access j, k, m.
c. In the class B, an instance method can only access j, m.
d. In the class B, an instance method can only access k, m.


b. In the class B, an instance method can only access j, k, m.

Computer Science & Information Technology

You might also like to view...

Is there a way to change the entire contents of the buffer to capital letters? Can you think of a way to change just one paragraph?

What will be an ideal response?

Computer Science & Information Technology

The WordArt ____ is the exterior border surrounding each letter or symbol.

A. effect B. fill C. depth D. outline

Computer Science & Information Technology

External styles override or take precedence over inline styles

Indicate whether the statement is true or false

Computer Science & Information Technology

____ encoding literally means a positional numbering system using a base of 64.

A. ASN.1 B. Base64 C. OID D. PKCS#64

Computer Science & Information Technology