Which of the following Microsoft Office applications is a relational database software application that is used to record and link data, query databases, and create forms and reports?

A) Word B) Excel C) Access D) PowerPoint

C

Computer Science & Information Technology

You might also like to view...

Theme fonts include both the Heading fonts and Body fonts

Indicate whether the statement is true or false

Computer Science & Information Technology

Why can you not use the swap template function to swap two complete arrays?

template void swap(T& left, T& right) { T tmp=left; left=right; right=tmp; } a. You can not pass an array to a function b. The swap function does not return anything c. the = operator does not work for an array d. tmp should be an integer

Computer Science & Information Technology