Methods only run when ________.
Called
What is passed data in a method referred to as?
Parameters
What is the difference between Static and Void in method callings?
Static: The method belongs to the Class rather than being an object of the class.
Void: The method has no return type or value.
What does the keyword Static mean in Java?
Unchanging.
What are the 6 access modifiers for methods?
What happens after a Return statement in a method?
The method will end (anything after the Return statement will not be executed).
What happens after a Return statement in a method?
The method will end (anything after the Return statement will not be executed).