Java - Writing Methods

Java - Writing Methods

Assessment

Flashcard

Computers, Instructional Technology

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

5 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which of the following is NOT a reason for using procedural abstraction?
- Divide a problem into subproblems to solve it a piece at a time
- Reuse code by putting it in a method and calling it whenever needed
- Smaller methods are easier to debug and understand
- Passing arguments to parameters are required when writing methods

Back

Passing arguments to parameters are required when writing methods

2.

FLASHCARD QUESTION

Front

Which of the following is NOT a step to creating and calling a method: Declare an Object of your class in the main method, Call the method by using objectName.methodName(), Write the method definition (signature) with the header and body, Use System.out.println() to debug your program

Back

Use System.out.println() to debug your program

3.

FLASHCARD QUESTION

Front

Which of the following method calls is INVALID? Assume the object name is song and the method name is chorus.

Back

Media Image

4.

FLASHCARD QUESTION

Front

When you create your own method, the variables you define for it in the method header are called

Back

formal parameters

5.

FLASHCARD QUESTION

Front

Which of the following is the correct method header for this method call:
song.verse(3, "Bob");

Back

Media Image