class A
{
private int i;
}
class B extends A
{
private int i;
}
if I create an object of B class what will be the memory of that object.
Answer Posted / bhavya
12 bytes
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
How are java objects passed to a method and what are native methods?
What are filterstreams?
What's the default access specifier for variables and methods of a class?
Why declare Main() method as a static in java ?
What does provide mean construction?
What is public/private protected in java?
Difference between class#getinstance() and new operator ?
Explain about serializable interface in java?
Which method cannot be overridden in java?
How will you reverse a link list without using recursion?
What does main method?
What is the benefit of inner classes in java?
Is 0 true or is 1 true?
difference between byte stream class and character stream class?
Why we cannot override static method?