Quiz 8 Solution - Thursday June 15, 2000
1. What statement is used to load a package into our program?
2. What are four things that a signature of a method can consist of?
four things we talked about were access control keyword, return type, name, and formal parameter list
3. What is a logical data type called?
4. Give the truth table for the logical and.
| Input 1 |
Input 2 |
Logical and |
| True |
True |
True |
| True |
False |
False |
| False |
True |
False |
| False |
False |
False |