The formal term for a table is ____.
A. tuple
B. relation
C. two-dimensional record
D. object
Answer: B
You might also like to view...
NetBus and Anti-Spyware 2011 are examples of which of the following?
a. Antispyware programs b. Trojans c. Viruses d. Antivirus programs
Answer the following statements true (T) or false (F)
1. A form contains a button called btnDisplay, and the following code is placed inside btnDisplay’s Click event procedure. At run time, identical values will be displayed for num1 and num2 in the message box. 2. The output of the following lines of code will be a randomly selected whole number from 1 through 6, inclusive. ``` Dim rndNum As New Random() num1 = rndNum.Next(1, 7) MessageBox.Show(num1) ``` 3. When working with the MenuStrip control, the programmer is not allowed to set up access keys by placing an ampersand in front of a character of text. 4. When working with the MenuStrip control, the programmer makes the menus useful by placing code in the relevant Click event procedure for each menu item. 5. When working with multiple forms, only one form can be visible at the same time.