Consider the following incomplete method, which is intended to return the number of integers that evenly divide the integer inputVal. ; Assume that inputVal is greater than 0.
public static int numDivisors(int inputVal)
{
int count = 0;
for (int k = 1; k <= inputVal; k++)
{
if ( /condition/ )
{
count++;
}
}
return count;
}
Which of the following can be used to replace /condition/ so that numDivisors will work as intended?
Select one:
a. inputVal % k== 0
b. k % inputVal == 0
c. nputVal % k != 0
d. inputVal / k == 0
e. k / inputVal > 0

Answer :

Other Questions