Site MapHelpFeedbackMultiple Choice Quiz
Multiple Choice Quiz
(See related pages)

1
What shape is used to represent a decision in a UML activity diagram?
A)diamond
B)rectangle
C)circle
D)square
2
C# handles characters using the _______________ system to store characters internally in the computer.
A)ANSI code
B)16-bit Unicode
C)8-bit Unicode
D)none of these
3
A char variable can be compared to which of the following?
A)the code number
B)an escape sequence
C)a literal
D)all of these
4
Which method is used to return the uppercase equivalent of a string?
A)ToUpper
B)MakeUpper
C)StringUpper
D)UpperTo
5
Which of the following pairs of statements are equivalent?
A)if (soldBoolean == true) equivalent to if (soldBoolean not false)
B)if (soldBoolean == true) equivalent to if (soldBoolean = true)
C)if (soldBoolean = true) equivalent to if (soldBoolean)
D)if (soldBoolean == true) equivalent to if (soldBoolean)
6
Which of the following logical operators is used when both conditions must be true for the entire condition to be true?
A)||
B)&&
C)!
D)none of these
7
Conditions that are evaluated by a computer are evaluated as _______________.
A)on or off
B)yes or no
C)true or false
D)up or down
8
Which Debug command is used when you want execute the next line of code then pause again in debug time?
A)Step Into
B)Step Over
C)Step Out
D)Step Under
9
Pressing the Shift + F5 key will _______________ execution of a program.
A)pause
B)stop
C)continue
D)restart
10
The _______________ window will display all objects and variables that are within scope at break time.
A)Autos
B)Locals
C)Edit
D)Output







Programming in Visual C# 2005Online Learning Center

Home > Chapter 4 > Multiple Choice Quiz