Kittylover1504 Kittylover1504 03-01-2024 Computers and Technology contestada Given the following method static void nPrint(String message, int n) { while (n > 0) { System (message); n--; } } What will be displayed by the call nPrint('a', 4)?A. aaaaaB. aaaaC. aaaD. invalid call