Cards (10)

Code must be enclosed in these
Back
Determines if the method is private or public
Back
Specifies the value that is returned from the function when the function ends.
Back
Creates an instance of an object
Back
A block of code that performs a function and can receive 0 or more arguments as input, but must return one output.
Back
The type of data a method gives back.
Back
The method that turns the key to start a program
Back
May receive input that doesn't return an output, directly modifies values (changes the state)
Back
Methods must have a name, a designated output type, and parenthesis.
Back
May receive an input and always returns an output but doesn't change the state of the program
Back