What is the last output line of the code snippet given below int i = 0; while (i < 10) { int num = 1; for (int j = i; j > 1; j--) { System (j + " "); num = num * 2; } System.out.println("***"); i++; } a) 3 2 *** b) 9 8 7 6 5 4 3 2 *** c) 8 7 6 5 4 3 2 *** d) 2 ***