AP CSA Unit 2: Objects

studied byStudied by 289 people
5.0(2)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 15

flashcard set

Earn XP

Description and Tags

16 Terms

1

object

a data type that is created in Java

New cards
2

Math class

stores common numbers used in mathematical calculations and methods that have mathematical functions

New cards
3

static method

belong to a class but not to any instances of that specific class

can be called without class’s instance or object

New cards
4

Math.abs(x)

gets the absolute value of ‘x’ ; the return value is always positive

New cards
5

Math.pow(x,y)

does ‘x’ to the power of ‘y’ (x^y); the answer will always be a double(decimal) value

New cards
6

Math.PI

stores the value for pi: 3.141592653…

New cards
7

charAt(int x)

returns the char at the given index of ‘x’

New cards
8

contains(String s)

returns true when received string is within the called string, false otherwise

New cards
9

endsWith(String s)

returns true when received string ends with called string, false otherwise

New cards
10

equals(String s)

returns true when the two strings are equal, false otherwise

New cards
11

equalsIgnoreCase(String s)

returns true when the two strings are equal ignoring the case( lower or upper), false otherwise

New cards
12
public class Example{
public static void main(String[] args){
String s = "I like apples";
String g = "ILIKEAPPLES";
//What is returned from this line of code?
System.out.println(s.equals(g));
}
}

false

New cards
13
public class Example{
public static void main(String[] args){
String s = "I like apples";
String g = "ILIKEAPPLES";
//What is returned from this line of code?
System.out.println(toLowerCase(g));
}
}

ilikeapples

New cards
14
public class Example{
public static void main(String[] args){
int x = 2;
int y = 10;

int z = Math.pow(y,x);
System.out.println(z);
}
}

100.00

New cards
15
public class Example{
public static void main(String[] args){
int x = 2;
int y = -10.9;

int z = Math.abs(y);
//what is printed from this program
System.out.println(z);
}
}

10.9

New cards
16
public class Example{
public static void main(String[] args){
String hi = "hello, John Harvard";

//what is printed from this program?
System.out.println(hi.charAT(7));
}
}

J

New cards

Explore top notes

note Note
studied byStudied by 10 people
78 days ago
5.0(2)
note Note
studied byStudied by 17 people
836 days ago
5.0(1)
note Note
studied byStudied by 11 people
884 days ago
5.0(1)
note Note
studied byStudied by 31 people
760 days ago
5.0(1)
note Note
studied byStudied by 42 people
886 days ago
5.0(1)
note Note
studied byStudied by 52 people
545 days ago
5.0(1)
note Note
studied byStudied by 9 people
842 days ago
5.0(1)
note Note
studied byStudied by 138 people
634 days ago
5.0(3)

Explore top flashcards

flashcards Flashcard (85)
studied byStudied by 21 people
361 days ago
5.0(1)
flashcards Flashcard (72)
studied byStudied by 26 people
738 days ago
4.6(9)
flashcards Flashcard (40)
studied byStudied by 1 person
738 days ago
5.0(1)
flashcards Flashcard (84)
studied byStudied by 8 people
803 days ago
5.0(1)
flashcards Flashcard (33)
studied byStudied by 3 people
411 days ago
5.0(1)
flashcards Flashcard (90)
studied byStudied by 8 people
323 days ago
5.0(1)
flashcards Flashcard (146)
studied byStudied by 42 people
399 days ago
5.0(1)
flashcards Flashcard (36)
studied byStudied by 11 people
823 days ago
5.0(1)
robot