What will be the output of the following program?
int count = 1; while (count <= 15) { System.out.println(count % 2 == 1 ? "***" : "+++++"); ++count; }
15 times **
15 times +++++
8 times ***, 7 times +++++
both will print only once