MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the given code snippet? class equality { int x; int y; boolean isequal() { return(x == y); } } class Output { public static void main(String args[]) { equality obj = new equality(); obj.x = 5; obj.y = 5; Console.WriteLine(obj.isequal()); } } |
| A. | False |
| B. | True |
| C. | 0 |
| D. | 1 |
| Answer» C. 0 | |