Q42
Single choice
Given the code block: Integer x;
For(x=0;x<10; x+=2) { If(x==8) break;
If(x==10) break; } System.debug(x);
Which value will the system debug statement display?