Page 1 of 1

About Question enthuware.ocajp.i.v7.2.1099 :

Posted: Wed May 23, 2012 8:50 am
by ETS User
there is something wrong with html in this question:

Code: Select all

public class TestClass{
   public static void main(String args[]){
      int x  = 0;
      labelA:   for (int i=10; i<0; i--){
         int j = 0;
         labelB:
         while (j < 10){
            if (j > i) break labelB;
            if (i == j){
               x++;
               continue labelA;
            }
            j++;
         }
         x--;
      }
      System.out.println(x);
   }
}

Re: About Question enthuware.ocajp.i.v7.2.1099 :

Posted: Thu May 24, 2012 7:45 pm
by admin
You are right. The html is messed up in this question. This should be fixed asap.

thank you for your feedback!

Re: About Question enthuware.ocajp.i.v7.2.1099 :

Posted: Sat May 26, 2012 10:18 am
by admin
I just realized that this has already been fixed. Are you sure you have the latest version of the question bank (1.12)?

Re: About Question enthuware.ocajp.i.v7.2.1099 :

Posted: Thu Jun 07, 2012 11:33 am
by Guest
version is 1/12, and messed up html is still there

Re: About Question enthuware.ocajp.i.v7.2.1099 :

Posted: Thu Jun 07, 2012 8:02 pm
by admin
This should definitely be fixed now in 1.13.

thank you,
Paul.
2.1099.jpg
2.1099.jpg (69.95 KiB) Viewed 3542 times