All machines speaks thee word, and the language of all machine gods:
Numbers such as 0, 1, 2, -1, -2, ...
int
public
How can you start a loop in java?
for, and while loops
What is the maximum score you could get from doing the APCSA test?
5/5
Java needs a place to work, that place is:
Java Compiler
Decimal values
double
You don't want others to know this, such as your bank card number.
Private
you can make a list of things with this property, the list size can be changed, not like another thing that's similar to it.
Arraylist
What is not being tested in the year of 2025-26?
Inheritance and Polymorphism
What make Java visible?
JVM!
"a,b,c,d,e,f,g..."
characters
methods, classes often start with _____
public
Math class
The general rule for making a random number in java is?
Math.random*(max-min+1)+min;
Making something harder to understand, difficult to see through....
Abstraction
Is String a primitive type? True or False
False
Fields, embedded variables often start with _____
private
Index of a string start at 0? True or false.
True
Consider this previously declared string:
String str = "IamSteve";
What is the result of str.indexOf("S"); going to reflect?
3
Java is an _____ programming?
Object Oriented
True, or false?
boolean
What is the relationship between object and method?
Object use methods
You can make a matrix yourself in java by using _____?
2D array
What does == have that differs itself from .equals?
It check primitive types' values.