The Database window displays the tables, queries, forms, and reports. Describe what these four objects represent.
What will be an ideal response?
A table contains all of the raw data within the database in a spreadsheet-like view.
A query allows you to select a subset of fields or records from one or more tables.
A form provides an easy-to-use data entry screen.
A report is a professional printout of data that can contain enhancements such as headers, footers, graphics, and calculations on groups of records.
You might also like to view...
Setting the property to None removes the standard window frame containing the title and buttons to minimize, maximize and close the app.
a) Frame b) Title c) WindowStyle d) WindowFrame
Which of the following loops correctly uses iter as an iterator to move through the nodes of the linked list?
NodePtr iter; //a pointer to a node a. while(iter != NULL) iter++; b. while(iter != NULL) iter=iter->link; c. for(iter=NULL; iter != NULL; iter=iter->link) d. for( iter=head; iter != NULL; iter=iter->link)