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 a method type?
What happens if we override only equals?
When the constructor of a class is invoked?
Write an algorithm program in java for the following question.. 1) S is a set of integers.X is an integer obtained by sum of two digits in S. Write logic for whether or not the X is from the S. The time of algorithm should not exceed o(n logn).
What are the differences between path and classpath variables?
what is a green thread? : Java thread
Difference between a process and a program?
Is it possible to cast an int value into a byte variable? What would happen if the value of int is larger than byte?
What do you mean by constructor?
What happens when heap memory is full?
How to make class immutable
How to convert string to byte array and vice versa?