Site MapHelpFeedbackTrue or False
True or False
(See related pages)

1
Context menus are the shortcut menus that pop up when you left-click on an object.
A)True
B)False
2
A context menu does not have a top-level menu.
A)True
B)False
3
General methods are rewritten to eliminate the need to retype the same code over and over in a program.
A)True
B)False
4
To call a general method, you must specify the method name, the return type, and all arguments.
A)True
B)False
5
If a general method has no arguments, you do not need to include the parentheses when calling the method.
A)True
B)False
6
Creating a variable as local and passing it to called methods as an argument is often a good alternative to creating a class level variable.
A)True
B)False
7
If a general method returns a value, it cannot define and use any arguments.
A)True
B)False
8
The name you give an argument in the method header is the name you use inside the method to refer to the value of the argument.
A)True
B)False
9
If a method header is declared with void rather than a data type, you do not use the return keyword in the body of the method.
A)True
B)False
10
The Visual Studio .NET smart editor will prompt you with a list of the arguments defined for all methods you call.
A)True
B)False







Programming in Visual C# 2005Online Learning Center

Home > Chapter 5 > True or False