When you export data from Access to Excel, the records in Access become what in Excel?

A. Rows
B. Columns
C. Titles
D. Sheets

Answer: A

Computer Science & Information Technology

You might also like to view...

The Text Direction options—Stacked and Rotate—produce the same result

Indicate whether the statement is true or false

Computer Science & Information Technology

Consider the following statements:struct studentType1  {  string name;  int ID;  double gpa;  };studentType1 student1, student2;struct studentType2  {  string name;  int ID;  double gpa; };studentType2 student3, student4;Which of the following statements is valid in C++?

A. student2 = student3; B. student1 = student4; C. student2.ID = ID; D. student1.ID = student3.ID;

Computer Science & Information Technology