What is the difference between this() and super()?
Answer Posted / tulasi prasad
this keyword is used to invoke the current class properties.
Where as super keyword is used to invoke the immidiate
super class properites.
Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
Can java inner class be static?
Can we overload the main() method?
What is qms certification?
What is a nullable field?
How does hashmap work in java ?
What is method overloading in JAVA? Why is it not present in C ?
Explain the selection sort algorithm and state its time complexity?
How does linkedlist work in java?
What is a Null object?
Why we use set in java?
What is charat ()?
What do you understand by classes in java?
Name and explain the types of ways which are used to pass arguments in any function in java.
What are the types of casting?
You can create a string object as string str = “abc”; why cant a button object be created as button bt = “abc”;? Explain