What provides periodic updates of what is occurring in the business?
A) performance reports
B) records
C) reports used for decision making
D) data capture forms
B) records
You might also like to view...
Which of the following is a valid declaration for a ragged array with five rows but no columns?
a. int[][] ragged = new int[5]; b. int[][] ragged = new int[][5]; c. int[][] ragged = new int[5][]; d. int[] ragged = new int[5];
Given the resulting queue X from below, What would be the result of each of the following?
``` X.enqueue(new Integer(4)); X.enqueue(new Integer(1)); Object Y = X.dequeue(); X.enqueue(new Integer(8)); X.enqueue(new Integer(2)); X.enqueue(new Integer(5)); X.enqueue(new Integer(3)); Object Y = X.dequeue(); X.enqueue(new Integer(4)); X.enqueue(new Integer(9)); a.) X.front(); b.) Y = X.dequeue(); c.) X.front(); d.) Y = X.dequeue(); e.) X.front(); ``````
If a manager wants to ensure he has current data for decision making, he needs to regularly add new records to the table. The best way to do this is by using a(n) ________ query
A) make table B) update C) append D) delete
The ________ allows the user to import records from an Excel spreadsheet into an Access table
A) Records Wizard B) Export Spreadsheet Wizard C) Data Wizard D) Import Spreadsheet Wizard