A(n) ____ is a list of the objects used in a program, including which screens they are used on and whether any code is associated with them.
A. object dictionary
B. object index
C. GUI dictionary
D. interface dictionary
Answer: A
Computer Science & Information Technology
You might also like to view...
What is the correct syntax for displaying the value of the String variable myString in a text box?
(A) txtBox.Text = ';myString" (B) txtBox.Text = myString (C) txtBox.Text.myString (D) txtBox.Text = Str(myString)
Computer Science & Information Technology
If the statements in the body of the loop are all O(1), what is the order of the loop?
A loop body is controlled by the following statement: ``` for (int count = 2; count <= n; count +=2) ``` a) O(1/2) b) O(1) c) O(n) d) O() e) O()
Computer Science & Information Technology