What does super()represent, and how is it used in Java?
Answer / nashiinformaticssolutions
• super() denotes a parent or base class's current instance.
• Used to: o Call the parent/base class's default constructor
Access the base class's methods
The superclass instance is indicated.
Is This Answer Correct ? | 0 Yes | 0 No |
Can inner class final?
How do you do a line break in java?
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
How do you set security in applets?
What is incompatible types in java?
What do heavy weight components mean in java programming?
What is the byte order of byte buffer?
Can we use return in constructor?
Can anonymous class have constructor?
Is null an object java?
Where can i get Latest SUN Certification Dumps and what are the Sun Certification Codes that are available, Im new to JAVA, so please gimme info as i need to write J2EE - Core Java Certification
What are the string methods in java?