Match the following Date/Time data types with their example

I. Long Date
II. Short Date
III. General Date
IV. Short Time
V. Long Time

A. 11/9/2015
B. 10:10:10 PM
C. 11/9/2015 10:10:10 PM
D. 22:10
E. Monday, November 9, 2015

E, A, C, D, B

Computer Science & Information Technology

You might also like to view...

The ________ function will return a numerical value between one and seven that represents the day of the week

Fill in the blank(s) with correct word

Computer Science & Information Technology

Does the return statement in the following function cause syntax errors?

``` void f() { int max = 0; if (max != 0) cout << max; else return; } ``` A. No B. Yes

Computer Science & Information Technology