Java Methods

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:55 AM on 8/4/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

method

a block of code that performs a specific task

2
New cards

Method Call

calling a method tells java to run the instruction inside that method

3
New cards

parameters

a variable listed inside the parentheses of a method declaration

4
New cards

return type

method gives back result

5
New cards

method overloading

happens when two or more methods have the same name but diff parameter lists

6
New cards

scope

refers to the part of the program where a variable can be used

7
New cards

local variable

variable inside a method

8
New cards

recursion

happens when a method calls itself to solve a smaller version of the same problem

9
New cards

base case

tells the method when to stop calling itself

10
New cards

void

used when a method does not return a value

11
New cards

static method

method that belongs to the class and can be called without creating an object

12
New cards

instance methods

method that belongs to an object and requires an object before it can be called