Podcast
Questions and Answers
What is the primary function of a method in programming?
What is the primary function of a method in programming?
- To define the main entry point of a program.
- To declare variables used throughout the program.
- To handle input and output operations.
- To encapsulate a named block of code that performs a specific task. (correct)
In what order does a method's code block typically execute?
In what order does a method's code block typically execute?
- Based on priority assigned to each line of code.
- From top to bottom, sequentially. (correct)
- In a random order determined by the compiler.
- In reverse order, from bottom to top.
What is the significance of curly brackets {}
in the context of methods?
What is the significance of curly brackets {}
in the context of methods?
- They define the scope or code block of the method. (correct)
- They indicate where parameters are passed into the method.
- They specify the return type of the method.
- They are used to enclose comments within the method.
Which of the following is a benefit of using methods in programming?
Which of the following is a benefit of using methods in programming?
In the context of a method, what is a 'parameter'?
In the context of a method, what is a 'parameter'?
In the method declaration public static void main(String[] args)
, what does void
signify?
In the method declaration public static void main(String[] args)
, what does void
signify?
What happens when a return
statement is executed within a method?
What happens when a return
statement is executed within a method?
Which part of a method declaration is known as the method's 'header'?
Which part of a method declaration is known as the method's 'header'?
What is a method's 'signature' primarily composed of?
What is a method's 'signature' primarily composed of?
What is the purpose of the return
keyword in a method?
What is the purpose of the return
keyword in a method?
Which of the following statements is true regarding the return
keyword?
Which of the following statements is true regarding the return
keyword?
Which of the following best describes a 'void' method?
Which of the following best describes a 'void' method?
Can a 'void' method contain a return
statement?
Can a 'void' method contain a return
statement?
Where should methods be written in relation to other methods and classes?
Where should methods be written in relation to other methods and classes?
What are access modifiers, such as public
and static
, used for in a method declaration?
What are access modifiers, such as public
and static
, used for in a method declaration?
Why is it important for method names to follow variable naming conventions like camelCase?
Why is it important for method names to follow variable naming conventions like camelCase?
In the context of calling a method, what does 'parameter matching' refer to?
In the context of calling a method, what does 'parameter matching' refer to?
Why should you handle the return value of a method?
Why should you handle the return value of a method?
What is 'unreachable code' in the context of methods?
What is 'unreachable code' in the context of methods?
Which part of the following method signature indicates the type of data that the method will return?public static int calculateSum(int a, int b)
Which part of the following method signature indicates the type of data that the method will return?public static int calculateSum(int a, int b)
Consider the following method definition:
public static int multiply(int a, int b) {
return a * b;
}
What is the signature of this method?
Consider the following method definition:
public static int multiply(int a, int b) {
return a * b;
}
What is the signature of this method?
Given the method definition below:
public static void displayMessage(String message) {
System.out.println(message);
}
What would happen if you were to call this method with a null
argument?
Given the method definition below:
public static void displayMessage(String message) {
System.out.println(message);
}
What would happen if you were to call this method with a null
argument?
Which of the following statements regarding method parameters is correct?
Which of the following statements regarding method parameters is correct?
Which best describes the benefits of methods?
Which best describes the benefits of methods?
What is the result of not returning anything for a method that is not of the type void
?
What is the result of not returning anything for a method that is not of the type void
?
Where do you call methods?
Where do you call methods?
What does the keyword return
do?
What does the keyword return
do?
Which of these is not a method?
Which of these is not a method?
If a method is created as the following:
public static int test(int a) {
return a + 1;
}
what must be done with the value during the call?
If a method is created as the following:
public static int test(int a) {
return a + 1;
}
what must be done with the value during the call?
Given these methods, which statement will not produce the outcome true
?
public static boolean one(int a) {
if (a == 1) {
return true;
} else {
return false;
}
}
public static boolean two(int a) {
return a == 2;
}
Given these methods, which statement will not produce the outcome true
?
public static boolean one(int a) {
if (a == 1) {
return true;
} else {
return false;
}
}
public static boolean two(int a) {
return a == 2;
}
Why would we want to use methods?
Why would we want to use methods?
Which of these statements contains an unreachable code error?
Which of these statements contains an unreachable code error?
When calling methods, what needs to be considered during parameter matching?
When calling methods, what needs to be considered during parameter matching?
Why must the return value be handled?
Why must the return value be handled?
Flashcards
What is a Method?
What is a Method?
A named block of code that performs a task when called.
Why use Methods?
Why use Methods?
Methods can be called over and over without rewriting code.
Access Modifier
Access Modifier
Specifies access level. Determines visibility from other parts of the code.
Return Type
Return Type
Signup and view all the flashcards
Method Name
Method Name
Signup and view all the flashcards
Method Parameters
Method Parameters
Signup and view all the flashcards
Method Body
Method Body
Signup and view all the flashcards
Return Keyword
Return Keyword
Signup and view all the flashcards
Void Return Type
Void Return Type
Signup and view all the flashcards
Where to Write Methods
Where to Write Methods
Signup and view all the flashcards
Where to Write Methods
Where to Write Methods
Signup and view all the flashcards
Method Header
Method Header
Signup and view all the flashcards
Study Notes
- Writing methods involves creating named blocks of code.
What is a method?
- A method is a named block of code that is executed when called by its name.
- The code block runs from top to bottom.
- The code block runs until it encounters a return statement.
- The code block can also run until the end of its code block.
- Methods can be seen as a minitiature program.
- Methods take data (parameters), perform functions, and return a value.
Method Code Block
- Methods contain code that runs, and are called by name to execute their code block.
- Curly brackets define a method's code block.
- Methods can contain other code blocks, such as if statements and for loops.
Why use Methods?
- Methods are convenient because they can be called repeatedly without rewriting the code.
Method Syntax
- An example of a method is:
public static void main(String[] args) { //code goes here }
. public
andstatic
are access modifiers.void
is the return type.main
is the method name.String[] args
represents the method's parameters.- When you run a program, you are actually running a method that contains code inside a block, that runs when called.
Method Execution
- When a method is called, the program execution jumps to that method, executes it, and then returns to the main program.
Parts of a Method: Header
- The method's header declares the method with its return type, name, and parameters.
- A method's signature includes the name and parameter list.
Parts of a Method: Access Modifier
- The access modifier specifies the accessibility of the method.
Parts of a Method: Return Type
- The return type specifies the type of value the method will return.
- It represents the "answer" the method provides, and indicates the type of the answer.
Parts of a Method: Name/Identifier
- The method's name should follow variable naming conventions, be descriptive, and use camelCase. -Methods are called by name followed by parentheses.
Parts of a Method: Parameter List
- A method can have many parameters or none at all.
- Parameters are placeholder variables that store values passed by the caller.
- This is where all needed information is listed, that the method needs from the program in order to execute.
Parts of a Method: Body
- The method's body is the block of code within curly brackets that executes when the method is called.
- Methods must return a value of the specified type before the bottom curly bracket is reached, unless the return type is void.
Return Keyword
- The
return
keyword indicates that a method's job is done and it should return a value. - Code after a
return
statement will not be executed as the method has already returned.
IsPositive method example
- Consider this method:
public static boolean isPositive(int num) {
if (num > 0)
return true;
}
- If the num parameter supplied is bigger than 0, it returns true
- Without an else statement, this method will not return anything without a condition being met
- To fix it:
public static boolean isPositive(int num) {
if (num > 0)
return true;
else
return false;
}
- A simplified version:
public static boolean isPositive(int num) {
if (num > 0)
return true;
return false; //since nothing has returned
}
- An even more simplified version:
public static boolean isPositive(int num) {
return num > 0;
}
More on Return Keyword
- When the return keyword is encountered the method is done
- Code after a return statement that is not inside an if statement or loop will be unreachable
- A Method must have a return statement unless it is void
Void Return Type
- Methods with a void return type do not return a value.
- Methods that has a code block will run regardless if it's void or not
- Void methods can still return, they just don't return a value
- Void methods do not explicitly require a return statement, the compiler will implicitely return
Calling Methods
- Parameter matching is neccessary when calling Methods
Calling Methods - Example
public static double avgOf2(int n1, int n2) {
int sum = n1 + n2;
double average = sum / 2.0;
return average;
}
- Incorrect way to call the method:
avgOf2();
- Incomplete way to call method with parameters:
avgOf2(????);
- Complete way to call the method, as it needs parameters:
avgOf2(91, 94);
- Assigning it to a variable with the return:
double myAverage = avgOf2(91, 94);
Where to Write Methods
- Methods must be written outside of other methods.
- Methods must be written inside a class.
public class Tester
{
public static void main(String[] args)
{
//main code goes here.
}
public static int addsOne(int a)
{
return a + 1;
}
}
Benefits of Writing Methods
- Easier debugging since the code can easily be found in once place
- Less code repetition is needed when reusing the function
- Easier to read since only the method name is needed
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.