Multiple Choice
Which of the following function declarations would be correct to overload the multiply operator for the Rational numbers class?
A) friend Rational operator timesconst Rational &left, const Rational &right) ;
B) Rational operator timesconst Rational &left, const Rational &right) ;
C) friend Rational operator *const Rational &left, const Rational &right) ;
D) Rational operator *const Rational &left, const Rational &right) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q36: Which of the following operators can not
Q37: An operator that expects two parameters is
Q38: An operator that expects only one parameter
Q39: If a given task being performed by
Q40: Given the following class, which is the
Q42: You may not change the precedence of
Q43: Which of the following statements are true?<br>A)
Q44: What happens when you define a class
Q45: Functions that are constant member functions may
Q46: Both the copy constructor and the assignment