What output is produced by the following statement? Explain.

```
System.out.println ("50 plus 25 is " + 50 + 25);
```


The output produced is:

50 plus 25 is 5025

First the string “50 plus 25 is ” is concatenated with the integer 50; since one of the operands is a string, the result is a string. Then the string “50 plus 25 is 50” is concatenated with the integer 25, producing the final result.

Computer Science & Information Technology

You might also like to view...

Suppose you want to program behavior that repeats as long as some condition does not occur. To do this, you could use a statement with the following format: ____.

A. doWHILE (true) B. while (!true) C. if (NOT condition) D. while (&& false)

Computer Science & Information Technology

Addresses starting with fe80 are called link-local IPv6 addresses.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Figure OL 5-1 What type of recurrence pattern and range is shown for the appointment in the accompanying figure?

A. Recurs every week on Wednesday and ends on Monday 6/15/2015 B. Recurs every week on Monday and Wednesday and ends on Monday 6/15/2015 C. Recurs every week on Monday and ends after 4 occurrences D. Recurs every week on Monday and ends after 10 weeks

Computer Science & Information Technology

The effective use of a _____ is critical to attracting prospects to a Web site.

a. newsletter b. forum c. browser cookie d. search engine

Computer Science & Information Technology