Which statement accurately describes the function of a query?
A) Queries manipulate data stored in tables, displaying only those records which match the query's criteria
B) Queries manipulate data stored in tables, hiding only those records which match the query's criteria
C) Queries delete data stored in tables, displaying only those records which match the query's criteria
D) Queries edit data stored in tables, displaying only those records which match the query's criteria
A
You might also like to view...
A movie is a series of still frames projected at a rate fast enough to fool the human eye into perceiving continuous motion.
Answer the following statement true (T) or false (F)
The name of a function is AnalyzeData. It takes one argument – an array of ints with 20 values named Scores. It returns an int data type. Which of these protypes is correct?
A. void AnalyzeData(int Scores[], 20); B. int AnalyzeData(int Scores[]); C. int AnalyzeData(int total, int Scores); D. int AnalyzeData(int[20]);