Which statements are most accurate regarding the following classes?<br><pre><code class="java">class A{ private int i; protected int j;}class B extends A{ private int k; protected int m;}</code></pre>

Correct Answer: An object of B contains data fields j, k, m.