Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+13 votes
asked in CSC211_Winter2018 by (1 point)

1 Answer

+11 votes

Formal parameters the parameters that you initialize when writing a method, it should look something like:
public static void somethingSomething (int something1, int something2)

Actual parameters are the parameter that you pass into the method when you call it, it should look like somethingSomething(4, 20);

answered by (1 point)
...