Quiz: What Does Null Mean?
| Did the mayor say "No comment"? | statement.equals("No comment") |
|
| Did the mayor say nothing at all? | statement.equals("") |
|
| Did the reporter not get a statement? | statement == null |
| Did the mayor say "No comment"? | statement.equals("No comment") |
|
| Did the mayor say nothing at all? | statement.equals("") |
|
| Did the reporter not get a statement? | statement == null |