APCSPA

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

flashcard set

Earn XP

Description and Tags

REVIEW

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

Create an Array

type[] array name = { values, values};

2
New cards

Find Array length

arrayname.length;

3
New cards

Get an index of array

arrayname[index#];

4
New cards

set Array index

arrayname[index#]=value;

5
New cards

Traverse through Array

for (int i = 0; i<arrayname.length; i++)

{

// action or code

}

6
New cards

Create ArrayList

ArrayList<Type> array name= new ArrayList<type>();

7
New cards

Add or Remove in Arraylist

Add: arraylist.add(value);

Remove: arraylist.remove(index #);

8
New cards

Find Arraylist size

arraylist.size();

9
New cards

Set Arraylist index

arraylist(index#, value);

10
New cards

Get Arraylist index

arraylist.get(index#);

11
New cards

Traverse through Arraylist

for(int i = 0; i<arraylist.size(); i++)

12
New cards

Comparing Strings

String str1= "hello";

String str2= "hello";

str1.equalsl (str2)

☆ .equals() ☆

13
New cards

Math in Coding

Math.abs(x)

Math.max(x,y)

Math.min(x,y)

Math.pow(x,y)

Math.random()