Answer:
C. A method is usually written within another method.
Explanation:
A method is usually written within another method is FALSE, because you cannot create a method within a method. A method is defined as a set of code identified by a name, which can be used during a program by using the method's name. A java method are grouped together to perform a specific task or operation. Java methods cannot be written within methods, but can call as many methods you want from a method.