Open In App

Java | Functions | Question 6

Like Article
Like
Save
Share
Report

Predict the output?




class Main {
    public static void main(String args[]) {   
             System.out.println(fun());
    }   
    static int fun(int x = 0)
    {
      return x;
    }
}


(A) 0
(B) Garbage Value
(C) Compiler Error
(D) Runtime Error


Answer: (C)

Explanation: Java doesn’t support default arguments. In Java, we must write two different functions.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads