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);