Define the concept of divide and conquer in your own words.
Describe the parts of a method definition.
What constitutes the signature of a method?
How do you specify that a method is not going to return a value?
What are the three types of scope and how do they differ?
Describe the computer-programming concept of recursion.
When would you use recursion and when would you use iteration?
What is method overloading?
Can the following two methods exist in the same class? Why or why not?
public int cube( int n ) { ... } public long cube( long l ) { ... }
How do you access the Math class's methods?