code Flashcards

1
Q

math.pow?

A

double result = math.pow(base,exponent) 2^3=8 2.2.2

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

math.max?

A

the highest #

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

math.abs?

A

absolute value -10=10

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

j to g ?

A

jump a1 b2 c3 …

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

indicate new comment?

A

//

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

non-static method

A

A non-static method in Java is an object-specific method that can access its properties and methods, declared with public or private access modifiers.

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

substring?

A

(2,3) dont want the first one do want the last one

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

what is static method?

A

A static method is a method within a class, allowing it to be called without creating an instance, and is commonly used for utility purposes like data conversion or mathematical operations.

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