Question: Assertions. You will identify various assertions as being either always true, never true or sometimes true / sometimes false at various points in program execution.

Assertions. You will identify various assertions as being either always true, never true or sometimes
true/sometimes false at various points in program execution. The comments in the method below indicate the
points of interest.
public static void mystery(int x, int y){
int z =0;
// Point A
while (x >= y){
// Point B
x = x - y;
// Point C
z++;
// Point D
}
// Point E
System.out.println(z +""+ x);
}
Fill in the table below with the words ALWAYS, NEVER or SOMETIMES

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!