With this code:
public class First
{
public void myFirst()
{
}
}
The following is the CORRECT
statement used if you want to call
method myFirst() from another class
named “Second”?
a. First(myFirst);
b. Second (myFirst);
c. First.myFirst ( );
d. Second.myFirst ( );
e. The correct statement is not listed.
The answer is "e"...
What would be the actual correct statement?
Thanks.