The illustration shows a code segment and four tables at the right, named “account” with the rows “balance,” “interestRate,” and “term.” The table shows the values according to the sections of the code. The code and the annotations are as follows:
"struct CDAccount
{
double balance;
double interestRate;
int term; //months until maturity
};
int main( )
{"
"CDAccount account;" annotated as “?,” “?,” and “?" in the first table
...
"account.balance = 1000.00;" annotated as "1000.00,” “?,” and “?" in the second table
"account.interestRate = 4.7;" annotated as "1000.00,” “4.7,” and “?" in the third table
"account.term = 11;" annotated as "1000.00,” “4.7,” and “11" in the fourth table.