click below
click below
Normal Size Small Size show me how
Ca obj 5-2correction
Question | Answer |
---|---|
In Figure 5.04 T, the Message box will display | Messagebox.show line of is never reached |
Grades are based on the scale below. using this scale, which condition(s) would be used to identify students who made a "b" | dblScore >= And dblScore < 93 |
In figure 5.02 Q, if the user enters 5 into the Textbox 1, the Message box will display | 10 |
When the code is completely written but will not execute, what is the appropriate action | Perform programmer debugging and/or program debugging |
If 5 and 2 are entered txtNumber1 and txtNumber 2 respectfully, what will the following code display | 1 |
Which logical condition would identify an individual earning a "B" or "A" based upon a variable score | Score >= 80 |
Which statement generates random whole numbers greater than or equal to 10 and less than 51, given the following code | Gen.Next(10,51) |
In figure 5.04 U, if the button is repeatedly clicked, how often will Message box show display the string, a 1 or 2 | Never |
Which logical condition will determine if Account balance is not less than CreditLimit | AccountBalance >= CreditLimit |
If there are 6 sides on a die, which statement generates a random whole number to represent one of the sides, given the following code | gen.Next(1,6) |
In Figure 5.02Q, if the user enters 0 into the text box, the MessageBOx will display | Sorry, not allowed |