with 100% Correct Answers | Latest
Update
Define signature and a body - 🧠ANSWER ✔✔Signature: Method that
contains the return type, parameters and name
Body: Lines between the open and closed curly brackets
Formal name for the integer inside the parentheses - 🧠ANSWER
✔✔Argrument
Explain inheritance & how it relates to the crab class - 🧠ANSWER ✔✔To
pass methods from a superclass to a subclass. It uses methods from the
actor class
Difference between calling a method with a void return type vs a non-void
return type - 🧠ANSWER ✔✔Void: Will not return any values
, Non-void: Will return a value
Write a method signature for the crab class - 🧠ANSWER ✔✔Public void
crabMove();
What is the purpose of having a class called Actor if you cannot make an
instance of it? - 🧠ANSWER ✔✔Provides a template that all actors can use
Why cant you right-click an Actor class and make an instance of it? -
🧠ANSWER ✔✔Actor is an abstract class in which you cannot create an
instance
Method name for: Public void addAmount(intamount);
Return value type for: Public void play();
How many parameters for: Public void compare(int x, int y, int z); -
🧠ANSWER ✔✔Method name: addAmount
Return value type: void
Parameters: 3