Given the following method

```
static void nPrint(String message, int n) {
while (n > 0) {
System.out.print(message);
n--;
}
}
```
What is k after invoking nPrint("A message", k)?

int k = 2;
nPrint("A message", k);
a. 0
b. 1
c. 2
d. 3


c. 2

Computer Science & Information Technology

You might also like to view...

If class A is derived from class B, and a virtual function in class B throws an exception, then the overridden version of that function in class A must

a. not throw any exceptions b. have an exception specification that is a subset of the exception specification of the base class B c. not throw any exceptions that the function in class B might throw d. all of the above

Computer Science & Information Technology

To conserve energy, you should use the computer's operating system ________ option to shut down components that are not in use

Fill in the blank(s) with correct word

Computer Science & Information Technology

You can rename a folder by right-clicking the folder name in the Navigation Pane

Indicate whether the statement is true or false

Computer Science & Information Technology

Declarations with _____ scope can be referenced throughout the schema file.

A. global B. local C. wide D. full

Computer Science & Information Technology