What will be the values after this code is executed?
int num = 3;
int counter = 1;
boolean condition = true;
while(condition){
num+= counter++;
if(num>10){
condition=false;
num+= ++counter;
}
}
This question has no hints