KnowledgeBoat Logo

Computer Applications

Parameters that are passed to the called method during the method call are termed as …………… parameters.

User Defined Methods

1 Like

Answer

actual

Reason — Parameters that are passed to the called method during the method call are termed as actual parameters.
These are the real values provided as input to the method.

For example:

public void display(int x) {
    System.out.println(x);
}

public static void main(String args[]) {
    display(5);  // Here, `5` is the actual parameter.
}

Answered By

1 Like


Related Questions