What is the printout of the following code?

```

#include
#include "Rational.h"
using namespace std;

int main()
{
cout << Rational().toString();

return 0;
}
```

A. It is a syntax error.
B. 0/1
C. 0
D. 0/0


C. 0

Computer Science & Information Technology

You might also like to view...

Which of the following statements is false?

a. A function definition begins with the def keyword, followed by the function name, a set of parentheses and a colon (:). b. Like variable identifiers, by convention function names should begin with a lowercase letter and in multiword names underscores should separate each word. c. The required parentheses contain the function’s parameter list—a com-ma-separated list of parameters representing the data that the function needs to perform its task. d. The indented lines after the colon (:) are the function’s suite, which consists of an optional docstring followed by the statements that perform the function’s task.

Computer Science & Information Technology

Define RIP and explain how it is used.

What will be an ideal response?

Computer Science & Information Technology

The app marketplace launched with the first generation iPhone.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The Xpath 2.0 function _____ returns anxs:dateTimedata value based on anxs:date andxs:timevalue.

A. ?current-date() B. ?dateTime(date, time) C. ?day-from-date(date) D. ?current-dateTime()

Computer Science & Information Technology