Write Java code that uses a do…while loop that prints even numbers from 2 through 10.

What will be an ideal response?


```
int evenNumber = 2;
do
{
System.out.println(evenNumber);
evenNumber += 2;
}while(evenNumber <= 10);
```

Computer Science & Information Technology

You might also like to view...

If you were to write a function for displaying the cost of an item to the screen, which function prototype would be most appropriate?

a. void display(); b. void display(float myCost); c. int display (float myCost); d. float display();

Computer Science & Information Technology

Sites like ________ do not host user-created content, but they are still social because they keep track of the popularity of videos and have users review and discuss the videos

A) Vimeo B) Hulu C) YouTube D) CollegeHumor

Computer Science & Information Technology

Which of the following is a difference between column charts and pie charts??

A. ?Unlike pie charts, column charts can represent a narrower range of data. B. ?Unlike pie charts, column charts can represent more than one data series. C. ?Unlike pie charts, column charts are represented relative to the whole. D. ?Unlike pie charts, column charts always represent population data.

Computer Science & Information Technology

A(n) ________ is a selection of cells that Excel treats as a single unit

Fill in the blank(s) with correct word

Computer Science & Information Technology