What is a super class and how super class be called?
Answers were Sorted based on User's Feedback
Answer / ramakrishna challapalli
super class is a class which is inherited by sub class.
Super class methods are bu using super keyword Syntax is
super.methodname();
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
A super class is the one which is capable for the display of
members and methods to make the subclass to access them.
A super class will be get called by using extends keyword in
subclass
| Is This Answer Correct ? | 1 Yes | 1 No |
super class is the class that is inherited.
| Is This Answer Correct ? | 0 Yes | 2 No |
What is the difference between constructor and method?
Explain about arraylist?
what is mutual exclusion? How can you take care of mutual exclusion using java threads? : Java thread
In which language java is written?
What does business logic mean?
is it possible to add a object in a HASHMAP
Explain the features of interfaces in java?
Which package has light weight components in java programming?
What is a string token?
Can we access instance variables within static methods ?
what is platform
What design pattern you have used in your project? I answered Factory pattern, how it is implemented? What are its advantage? Do know about Abstract Factory?