bool LessThan SomeClass anotherObject Which of the following-03529
bool LessThan( SomeClass anotherObject ); Which of the following tests in the client code correctly compares two class objects alpha and beta?
This multiple choice question (MCQ) is related to the book/course vu cs301 Data Structures. It can also be found in vu cs301 Mid Term - Quiz No.2.
bool LessThan( SomeClass anotherObject ); Which of the following tests in the client code correctly compares two class objects alpha and beta?
if (alpha.LessThan(beta))
if (LessThan(alpha).beta)
if (LessThan(alpha, beta))
if (alpha < beta)