Question
JAVA QUESTION 1 The value returned by a value-returning method can be saved for further calculation in the program. True False QUESTION 2 To use
JAVA
QUESTION 1
The value returned by a value-returning method can be saved for further calculation in the program.
True
False
QUESTION 2
To use a predefined method you must know the code in the body of the method.
True
False
QUESTION 3
A formal parameter is a variable declared in the method heading (ie. it's signature).
True
False
QUESTION 4
A local identifier is an identifier that is declared within a method or block and that is visible only within that method or block.
True
False
QUESTION 5
No two methods in the same class can have the same name.
True
False
QUESTION 6
Void methods have no return type.
True
False
QUESTION 7
The return statement must be the last line of the method.
True
False
QUESTION 8
When a program executes, the first statement to execute is always the first statement in the main method.
True
False
QUESTION 9
Given the method heading
public static String exampleMethod(int n, char ch)
what is the return type of the value returned?
int | ||
char | ||
String | ||
Nothing will be returned |
QUESTION 10
The method toString() is used to convert an object to a String object.
True
False
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started