What output is produced by the following code fragment?

```
int limit = 100, num1 = 15, num2 = 40;
if (limit <= limit)
{
if (num1 == num2)
System.out.println("lemon");
System.out.println("lime");
}
System.out.println("grape");

```

The output is:
lime
grape

Computer Science & Information Technology

You might also like to view...

The AutoFit feature will adjust the column width to accommodate the widest label in the column

Indicate whether the statement is true or false

Computer Science & Information Technology

To make sure that your document will print as intended, always use ________ before printing

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology