An inner class can actually be a subclass of the outer class?
a. true
b. false
Answers were Sorted based on User's Feedback
Answer / mool shankar shukla
inner class is a class within class. and sub class is a class which inherits method or methods from super class.
example of sub class...........
class a
{}
class b extends a
{}
here b is sub class of a.
| Is This Answer Correct ? | 3 Yes | 1 No |
Give a brief description of java socket programming?
What is a heavyweight component?
What is a java object and java application?
What is the meaning of immutable regarding string?
How to find the size of an array a)array.length() b)array.length c)array.size() d)array.size
Why inputstreamreader is used in java?
how does multithreading take place on a computer with a single cpu? : Java thread
Does constructor creates the object ?
Can we force the garbage collection to run?
Where is const variable stored?
What is method overloading with type promotion?
What is an infinite loop?