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

Computer Science & Information Technology

You might also like to view...

________ aligns text immediately with the left margin

A) Left alignment B) Center alignment C) Justified D) Right alignment

Computer Science & Information Technology

Server monitoring enables you to pinpoint problems and identify solutions, for example by tracking disk errors and replacing a hard disk before it fails.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Identify three different techniques to copy Access data to other applications.

What will be an ideal response?

Computer Science & Information Technology

For which of the following purposes would you use Google Webmaster's Search Console?

A. To perform SEO testing. B. To research possible domain names. C. To test your website's navigation. D. To add your website to search indexes.

Computer Science & Information Technology