If a class represents a date (such as July 4, 1776), then the date could reasonably be stored in

a. A member variable of type
```
double.
```
b. Two member variables of type
```
int.
```
c. Three member variables of type
```
int.
```
d. A string of characters (like "July 4, 1776").
e. A string for the month and two int variables.

c, d, and e

Computer Science & Information Technology

You might also like to view...

A cell address is the same as a cell reference

Indicate whether the statement is true or false.

Computer Science & Information Technology

realloc is conventionally used to

a) allocate memory for a single object b) allocate memory for an array of objects c) change the size of an object previously allocated d) change the contents of an object previously allocated

Computer Science & Information Technology