Java Methods Flashcards

1
Q

_________ in Java are like the basic units or building blocks of a Java program.

A

Methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Methods in Java are like the ______ or building
blocks of a Java program.

A

basic units

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Methods in Java are like the basic units or ________ of a Java program.

A

building
blocks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A _______ is a group of code that performs a
specific task or operation.

A

method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A method is a __________ that performs a
specific task or operation.

A

group of code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

A method is a group of code that performs a
_________ or operation.

A

specific task

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A method is a group of code that performs a
specific task or _________.

A

operation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

a _______ is a collection of
statements that work together to complete
a particular job.

A

method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

a method is a ________ that work together to complete
a particular job.

A

collection of
statements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

a method is a collection of statements that ____ ________ to complete a particular job.

A

work together

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

a method is a collection of statements that work together to _______________.

A

complete a particular job

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

________ are used to carry out specific actions
and are sometimes called functions.

A

Methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Methods are used to carry out specific actions
and are sometimes called _______.

A

functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Methods are used to _____ _____ _______ ______
and are sometimes called functions.

A

carry out specific actions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

In Java, a ________ runs only when it is called from
another _________.

A

method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

The ________ is the starting point of a Java
program, and it is the first method executed by
the JVM (Java Virtual Machine).

A

main() method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

The main() method is the ______ ________ _______ _______, and it is the first method executed by the JVM (Java Virtual Machine).

A

starting point of a Java
program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

The main() method is the starting point of a Java program, and it is the _______ executed by
the JVM (Java Virtual Machine).

A

first method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

The main() method is the starting point of a Java program, and it is the first method executed by the _____________________.

A

JVM (Java Virtual Machine)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

The main() method is the starting point of a Java
program, and it is the first method executed by
the JVM (________________).

A

(Java Virtual Machine)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

_______ in Java are reusable blocks of
code designed to perform specific tasks.

A

Methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Methods in Java are _____ _____ ___ _____ designed to perform specific tasks.

A

reusable blocks of
code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Methods in Java are reusable blocks of
code designed to______ _____ ____.

A

perform specific tasks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

They help _______, complex programs into smaller, easier-to-handle parts.

A

break large

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

They help break large, _____ ______ into smaller, easier-to-handle parts.

A

complex programs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

They help break large, complex
programs into _________, easier-to-handle
parts.

A

smaller

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

They help break large, complex programs into smaller, __________ _____.

A

easier-to-handle parts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

They keep your code _________ and_______.

A

organized
neat

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

They keep your _____ organized and neat.

A

code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

You can ____ _____ ________ ______ in different parts
of your program.

A

reuse the same method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

You can reuse the same method in different parts
of your __________.

A

program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

They save ______ and help reduce mistakes in your
code.

A

time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

They save time and _________ ___________ ______ in your
code.

A

help reduce mistakes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

_______________: Determines who can use the class, method, or field (e.g., public, private).

A

accessSpecifier

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

_________: Specifies the type of value the method returns. If no value is returned, the keyword void is used.

A

returnType

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

_________: The name of the method, written in
camelCase (e.g., calculateSum).

A

methodName

37
Q

________: Input values that the method can accept. A method can have zero or more parameters, each with a data type and name.

38
Q

___________: The code inside curly braces {} that defines what the method does.

A

method body

39
Q

_______________: If the method has a return type (not void), it must include a return statement followed by the value to be sent back.

A

return statementt

40
Q

_________: Can only be accessed within the class where it is
defined.

40
Q

________: Can be accessed from any class.

41
Q

___________: Accessible within the same package or by subclasses in different packages.

42
Q

_________: Automatically applied if no specifier is mentioned Accessible only within the same package

43
Q

The _________ __________ in Java includes the method name and its parameter list.

A

method signature

44
Q

The method signature in Java includes the method _______ and its _______ ________.

A

name
parameter list

45
Q

The parameter list consists of:

A

The number of parameters.
The type of parameters.
The order of parameters.

46
Q

If there are multiple parameters, they are
separated by ___________.

47
Q

If there are ____ _______, they are
separated by commas.

A

multiple parameters

48
Q

If there are no parameters, use an __________________

A

empty pair of
parentheses ()

49
Q

_________ allow you to pass values to the method.

A

Parameters

50
Q

___________ are declared inside the parentheses
after the method name.

A

Parameters

51
Q

Parameters are declared inside the parentheses
after the __________.

A

method name

52
Q

Parameters are declared inside the___________
after the method name.

A

parentheses

53
Q

The scope of parameters is limited to the ____________.

A

method
body

54
Q

Parameters are ________, and a method can have
zero parameters.

55
Q

Parameters are optional, and a method can have
___________.

A

zero parameters

56
Q

The _________ is a block of code that contains: Statements to perform tasks. Local variables and local classes (if needed). A return statement (optional, depending on the method type).

A

method body

57
Q

The method body is a __________ that
contains:
Statements to perform tasks.
Local variables and local classes (if
needed).
A return statement (optional, depending on
the method type).

A

block of code

58
Q

The method body is a block of code that
contains:
1.________ to perform tasks.
2.________ and 3.___________ (if
needed).
4.________ (optional, depending on
the method type).

A

1.Statements
2.local variables
3.local classes
4.A return statement

59
Q

If the ____________ is void, the method performs a task without returning any value.

A

return type

60
Q

If the return type is ______, the method performs a task without returning any value.

61
Q

If the _________ is a data type (e.g., int, float,
double), the method must return a value to
the caller.

A

return type

62
Q

If the return type is a data type (e.g., int, float,
double), the method must return a value to
the______.

63
Q

If the return type is a __________ (e.g., int, float,
double), the method must return a value to
the caller.

64
Q

The method cannot end without executing a
____________.

A

return statement

65
Q

The _______ cannot end without executing a
return statement.

66
Q

___________ can do two main things:
Return a value: The method provides a piece of
data that can be used elsewhere in the program.
Print output: The method directly displays
information (e.g., on the screen).

67
Q

Methods can do two main things:
____________: The method provides a piece of
data that can be used elsewhere in the program.
Print output: The method directly displays
information (e.g., on the screen).

A

Return a value

68
Q

Methods can do two main things:
Return a value: The method provides a piece of
data that can be used elsewhere in the program.
_____________: The method directly displays
information (e.g., on the screen).

A

Print output

69
Q

There are two basic types of methods

A

1.System-Defined Methods
2.User-Defined Methods

70
Q

1.System-Defined Methods:
Also called built-in or library methods.
These are____________ available in __________________ (part of the JDK).
You can use them directly without writing the code yourself.

A

pre-written methods
Java’s standard libraries

71
Q

1.System-Defined Methods:
Also called ________________.
These are pre-written methods available in Java’s standard libraries (part of the JDK).
You can use them directly without writing the code yourself.

A

built-in or library methods

72
Q

User-Defined Methods:
These are methods created by _______ to perform specific tasks.
They are designed to meet the unique requirements of a program.

A

programmers

73
Q

___________ - Used in method declarations to
show that the method does not return any value.

A

Void Keyword

74
Q

_________- Used to exit a method and,
if needed, return a value to the caller. It is
used in methods that have a return type (not
void).

A

Return Keyword

75
Q

When ______ is executed, the method stops
immediately, and control goes back to the
caller.

76
Q

When return is executed, the method stops
immediately, and _______ goes back to the
_________.

A

control
caller

77
Q

The ___________ must match the ______________ in the method definition.

A

order of arguments
order of parameters

78
Q

The __________ must match the data type
of parameters.

A

data type of arguments

79
Q

The data type of arguments must match the ____________.

A

data type
of parameters

80
Q

Use ____ and _____________ for parameters to
improve code readability and maintainability.

A

clear
meaningful names

81
Q

Use clear and meaningful names for parameters to
improve code ______ and __________.

A

readability
maintainability

82
Q

The _________ identifies the correct method based on
the number, type, and order of parameters.

83
Q

The compiler identifies the correct method based on
the ______,_______ and ____________.

A

number
type
order of parameters

84
Q

______________
Allows you to define multiple methods in the
same class with the same name but different
parameter lists

A

Method Overloading

85
Q

All ___________ must have the ______________.

A

overloaded methods
same name

86
Q

Methods must differ in the __________, ____________, or _______________.

A

number
type
order of parameters

87
Q

Overloaded methods can have the same or different
__________, but the return type alone cannot distinguish methods

A

return types

88
Q

Purpose of Method Overloading

A

Improve Readability
Provide Flexibility
Avoid Repetition