public class Test {public static void main(String[] args) {int count = 1;while (count = 15) {System.out.println(count % 2 == 1 ? "***" : "+++++");++count;}}}
Find the output for the following program?...class guru{public static void main(String[] args){int[] x={300,40,57};for(int i=0;ix.length;i++){System.out.print(x[i]+"");}}}