English

Observe the following code. It may contain Syntax, Logical or runtime errors int fnJob(int n) { while (n>0) { int d = n%10; n = n/10; return d; } }

Advertisements
Advertisements

Question

Observe the following code. It may contain Syntax, Logical or runtime errors. Execute it in Java and identify the error, if any. Rewrite the code without the error. Also write the aim of the code.

int fnJob(int n)
{
    while (n>0)
    {
      int d = n%10;
      n = n/10;
      return d;
    }
}
Code Writing
Advertisements

Solution

int fnJob(int n)
{
    while (n>0)
    {
        int d = n % 10;
        n = n / 10;
        return d;
    }
    return 0;
}
shaalaa.com
  Is there an error in this question or solution?
Chapter 3: User-Defined Methods - Exercises [Page 92]

APPEARS IN

Rupa Pandit Computer Applications [English] Class 10 ICSE
Chapter 3 User-Defined Methods
Exercises | Q 7. (vi) | Page 92
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×