| 1. | What will be the output of the program? class Test void start() boolean fix(boolean b1) |
|||||||
Answer: Option B Explanation: The boolean b1 in the fix() method is a different boolean than the b1 in the start() method. The b1 in the start() method is not updated by the fix() method. |
