What do I put as the return type if I don't want to return anything from a method?
Methods

Quiz
•
Computers
•
University
•
Medium
Montserrat Molina
Used 6+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
10 sec • 1 pt
int
none
void
leave it empty!
2.
MULTIPLE CHOICE QUESTION
10 sec • 1 pt
True or False:
A method does not need to have any parameters.
True
False
3.
MULTIPLE CHOICE QUESTION
20 sec • 1 pt
What is the correct way to define a method that subtracts two numbers, returning the difference?
public static void subtract(int num1, int num2)
public static int subtract (int num1, int num2)
public static int subtract(String num1, String num2)
public static void subtract(int num1, num2)
4.
FILL IN THE BLANK QUESTION
20 sec • 1 pt
Fill in the blank for defining a method that returns the square root of a number:
public static ___ squareRoot(double number);
5.
MULTIPLE CHOICE QUESTION
20 sec • 1 pt
Which of the following statements is false?
A method is good for reusing code.
A method with a return type must return a variable of that return type.
A method must always have at least 1 parameter.
A method with a void return type must not return anything.
6.
MULTIPLE SELECT QUESTION
30 sec • 1 pt
Select all of the following code snippets that are correct for calling a method sum, which returns the sum of two numbers:
int sum = add(5, 7);
System.out.println(add(5,7));
add(5);
add(5,7);
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Why is the following call to method minOfTwo, which returns the minimum number of 2 given numbers, incorrect?
int min = minOfTwo(8,"9");
The method minOfTwo only takes in one parameter.
The method minOfTwo does not return anything.
The method minOfTwo takes in two integers, but a String is being passed in.
There is nothing incorrect with this method call.
Create a free account and access millions of resources
Similar Resources on Quizizz
15 questions
002_Java Methods

Quiz
•
12th Grade - University
10 questions
Quiz 1

Quiz
•
University
15 questions
Round 4 - Harvest

Quiz
•
University
10 questions
CIS1101-programming practice2

Quiz
•
University
15 questions
Java Method

Quiz
•
University
10 questions
CSI U5L2 - Sequence & Selection

Quiz
•
10th Grade - University
7 questions
Operadores relacionales y lógicos

Quiz
•
University
10 questions
Week 4: Recap Java Programming

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade