A radio button's ____ property contains either the Boolean value True or the Boolean value False.
A. Display
B. Default
C. Selected
D. Checked
Answer: D
You might also like to view...
A special method that is invoked to set up an object during instantiation is called a ___________________.
a) new method b) dot operator c) creator d) constructor e) destructor
If the Substring method is called on a string using only one argument, the method returns ________.
a) the character at the index specified by the argument b) a copy of the string up to the index specified by the argument c) a copy of the string starting after the index specified by the argument d) a copy of the string starting at the index specified by the argument e) None of the above.
Return type ____________ indicates that a method will not return any information when it completes its task.
Fill in the blank(s) with the appropriate word(s).
Find the error(s) in the following code, which uses variables to perform a calculation.
``` 1 int number1; 2 int number2; 3 int result; 4 5 number1 = (4 * 6 - 4) / (10 % 4 – 2); 6 number2 = (16 / 3) - 2 * 6 + 1; 7 result = number1 - number2; ```