function overridind means and simple program
Answers were Sorted based on User's Feedback
Answer / rekha
many times child class wants to modify the functionality
exposed by base class.It means child classesare interested
in overriding some functionality of base class in order to
achieve different behavior
function overriding means having functions with same name
with same signature but in parent child relationship different
implementation
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / preetha
the function overloading is the technique in which you can make the function with more than one name but only if you will change the paramaters or the number of the paramaters.
| Is This Answer Correct ? | 1 Yes | 0 No |
what is costructor?
Name an advantage of linked list over array?
What is purpose of inheritance?
how to tackle technical questions
write a short note on Overloading of Binary Operator?
What is the difference between pass by reference and pass by value?
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
What is static in oop?
What is function overloading and operator overloading?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
why in java first invoke public static void main(String args[]) method????Why not public static void method1(String args[])??
diff between Abstract class Interfaces?