Solved

Consider the Recursive Method MyPrint Shown in This Code Snippet

Question 3

Multiple Choice

Consider the recursive method myPrint shown in this code snippet:
Public void myPrint(int n)
{
If (n < 10)
{
System.out.print(n) ;
}
Else
{
Int m = n % 10;
System.out.print(m) ;
MyPrint(n / 10) ;
}
}
What does this method do?


A) Prints a positive int value forward, digit by digit.
B) Prints a positive int value backward, digit by digit.
C) Divides the int by 10 and prints out its last digit.
D) Divides the int by 10 and prints out the result.

Correct Answer:

verifed

Verified

Related Questions

Unlock this Answer For Free Now!

View this answer and more for free by performing one of the following actions

qr-code

Scan the QR code to install the App and get 2 free unlocks

upload documents

Unlock quizzes for free by uploading documents