Sarah is creating a math library and wants to write a sum function that can add two integers, two floats, or an integer and a float. Which C++ feature should she use?
- Function Overloading
- Function Overriding
- Operator Overloading
- Type Casting
Sarah should use Function Overloading. This allows her to define multiple functions with the same name but different parameter types. In this case, she can create overloaded functions that accept different combinations of integers and floats to achieve the desired behavior for her sum function.
Loading...
Related Quiz
- How does the performance of a switch-case statement compare to if-else if-else chains, especially when dealing with a large number of conditions?
- What role do preprocessor directives play in the structure of a C++ program?
- The enum class introduces _______ scope to prevent enumerators from polluting the namespace.
- Consider enum class in C++11 and above. Which of the following is a true statement about its functionality?
- What is the primary purpose of a constructor in a class?