Jenny is working on a database that stores invoices. She needs to include the current day, month, and year, which will be derived from the computer system, on each new invoice. She should use the ________ function for this purpose

A) DatePart B) DateDiff C) Date D) DateArithmetic

C

Computer Science & Information Technology

You might also like to view...

The for each in array loop performs the statements within it once for each item in the array simultaneously.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Which of the following operations do forward iterators have?

a. Prefix operator* to make available the container element for use as l-value or r-value. b. Overloaded operator+ to add an int value to the iterator to move the place the iterator points forward by the argument number of elements. c. Overloaded operator* to multiply the iterator by an int value to move the place the iterator points by a number of elements equal to the argument. d. Overloaded operator++ to move the place the iterator points forward by one element. e. Overloaded operator-- to move the place the iterator points backward by one element. f. Overloaded operator== and operator!= to determine whether two iterators point to the same element.

Computer Science & Information Technology