After dividing the numbers, the ____ operator returns the remainder of the division.

A. division
B. modulus
C. remainder
D. integer division

Answer: B

Computer Science & Information Technology

You might also like to view...

Using the definition below, which of the following declares a variable of struct type book with title “War & Peace” and price 27.99.

struct book { string title; float price; }; book myBook; title = “War & Peace”; price = 27.99; b) book myBook; myBook.title = “War & Peace”, price = 27.99; c) book myBook; myBook[title] = “War & Peace”; myBook[price] = 27.99; d) book myBook; myBook.title = “War & Peace”; myBook.price = 27.99;

Computer Science & Information Technology

What kind of a class might be considered to be "fragile"?

A. A built in class that is overloaded. B. A class that depends on being passed parameters from another method. C. A class that depends on field names from parent classes. D. A class that has no destructor method.

Computer Science & Information Technology