Level 23
Level 25
15 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
32
The number of bits of information in an int (in Java)
64
The number of bits of information in a double (in Java)
Floating point
a way Java stores decimals without fixed points using fewer numbers like 9.3x10^7 (data type
Char
a one character data type
java.lang.Math
the official name of the standard Math class
Math.abs()
returns the absolute value
Math.pow()
computes the exponent
Math.sqrt()
returns the square root
Math.random()
creates a number between 0.0 and 1.0
Math.max()
returns the largest number between two values
Math.min()
returns the smallest number between two values
Fall Through
when the control flow passes a switch conditional
Switch
a conditional method that allows for a number of possible execution paths in more of a list
activecode
A general step by step process for solving a problem.
byte code
An intermediate language between source code and object code. Many modern languages first compile