Question from the Java test

How many times is the condition `(a++ < 15)` evaluated in the following code? ```java int a = 3; while (a++ < 15) { if ((a++ % 5) == 0) break; } ```