brainlord3138 brainlord3138 05-11-2019 Computers and Technology contestada Given the following method static void nPrint(String message, int n) { while (n > 0) { System.out.print(message); n--; } } What is the printout of the call nPrint('a', 4)?