MCQOPTIONS
Saved Bookmarks
| 1. |
Select the output for the following set of Code: bool a = true; bool b = false; a |= b; Console.WriteLine(a); Console.ReadLine(); |
| A. | 0 |
| B. | 1 |
| C. | True |
| D. | False |
| Answer» D. False | |