Which of the following can be overloaded?AVariableBObjectsCClassDFunctionAnswer: D. Function Read Explanation: Both functions and operators can be overloaded. C++/JAVA allows you to one definition for a function name or an operator in the same scope, which is called function overloading and operator overloading respectively. Read more in App