Write a declaration for an enumerated type that represents the months of the year.

What will be an ideal response?

```
enum Month { January, February, March, April, May, June, July, August,
September, October, November, December }
```

Computer Science & Information Technology

You might also like to view...

Many businesses are cutting waste by exporting reports and having them sent in an e-mail instead of having them printed directly from a database

Indicate whether the statement is true or false

Computer Science & Information Technology

The formula for Gross Profit is Net Sales - Cost of Goods Sold. You want to find the gross profit next year given a 2% gross profit growth rate. You enter the following formula into a query, but your numbers do not seem to be right. Why?

[Sales Data]![Net Sales] - [Sales Data]![Cost of Goods Sold]*1.02 A) The formula should be multiplied by 102%. B) A formula cannot contain a field reference and a constant. C) Access does not recognize decimals. D) The formula does not specify the right order of operations.

Computer Science & Information Technology