In a ____ relationship, a record in one table can be related to several records in another table and vice versa.
A. many-to-many
B. one-to-many
C. one-to-one
D. many-to-one
Answer: A
You might also like to view...
What is a layout control? What are the pros and cons of a layout control?
What will be an ideal response?
The principle of ____________________ states that any methods and properties that other programmers do not need to access or know about should be hidden.
Fill in the blank(s) with the appropriate word(s).
Spam filters are very effective for blocking any unwanted e-mail, but sometimes they can block legitimate messages.
Answer the following statement true (T) or false (F)
Identify and correct the errors in each of the following. [Note: There may be more than one error in each piece of code.]
a. ``` if ( age >= 65 ); document.writeln( "Age greater than or equal to 65" ); else document.writeln( "Age is less than 65 )"; ``` b. ``` var x = 1, total; while ( x <= 10 ) { total += x; ++x; } ``` c. ``` While ( x <= 100 ) total += x; ++x; ``` d. ``` while ( y > 0 ) { document.writeln( y ); ++y; ```