If you add a table with 10 records to a query and add an unrelated table with 4 records to the same query, how many records will display when you run the query?
A) 40 B) 4
C) 10 D) 0 (since the tables are not related)
A
Computer Science & Information Technology
You might also like to view...
What will be the value of pay after the following statements are executed?
``` int hours = 45; double pay, payRate = 10.00; pay = hours <= 40 ? hours * payRate : 40 * payRate + (hours - 40) *payRate * 1.5; ``` a. 400.00 b. 450.00 c. 465.00 d. 475.00
Computer Science & Information Technology
Consider the statement int list[10][8];. Which of the following about list is true?
A. list has 10 rows and 8 columns. B. list has 8 rows and 10 columns. C. list has a total of 18 components. D. list has a total of 108 components.
Computer Science & Information Technology