difference between overloading and overridding

Answer Posted / manish chakravarti

In overloading functions will have same name but different
signatures(type of parameters,number of parameters etc..).
but in overloading functions must have same name and
signature.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is interface in oop?

664


What is solid in oops?

617


What is abstraction encapsulation?

665


What is purpose of inheritance?

645


What are main features of oop?

639






Is html an oop?

586


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

1645


What is overriding vs overloading?

590


What is the example of polymorphism?

562


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1415


What is the difference between inheritance and polymorphism?

594


What is polymorphism what is it for and how is it used?

576


What is a class in oop?

608


What is oops in programming?

570


Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.

2580