Question: Specify the output and the variables' values after the following code segment is executed. short weight = 6 ; short height; do { System.out.print (

Specify the output and the variables' values after the following code segment is executed.
short weight =6;
short height;
do
{
System.out.print(weight +"-");
weight --;
}
while (weight >4);
for (height = weight; height <7; height++)
{
System.out.print(height +"#");
}
Note:
(1) If there is no output, please specify "nothing" (no quotes) in the blank for the output.
(2) If a variable is out of scope after the code segment is executed, please specify "out of scope" (no quotes) in the blank for the variable.
Output of the program:?
weight: ?
height:?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!