catlee7074 catlee7074 07-02-2024 Computers and Technology contestada How many times does the code snippet below display "Hello"int i = 0;while (i != 15){System.out.println("Hello");i++;}a) Infinite timesb) 14 timesc) 15 timesd) 16 times