Quiz 13 Solution - Thursday June 22, 2000
1. What are the four primary components in the signature of a method?
- Access Control Keyword
- Return Type
- Name
- Formal Parameter List
2. How do we indicate that a method will not return a value?
By making its return type void
3. What statement is used to cause a method to return a value?
4. How do we distinguish between a class method and an instance
method?