Podcast
Questions and Answers
We can also use the ________ method to concatenate two strings
We can also use the ________ method to concatenate two strings
concat()
The Math.max(x,y) method can be used to find the ________ value of x and y
The Math.max(x,y) method can be used to find the ________ value of x and y
highest
The Math.min(x,y) method can be used to find the ________ value of x and y
The Math.min(x,y) method can be used to find the ________ value of x and y
lowest
The Math.sqrt(x) method returns the square root of ________
The Math.sqrt(x) method returns the square root of ________
Signup and view all the answers
The Math.abs(x) method returns the ________ (positive) value of x
The Math.abs(x) method returns the ________ (positive) value of x
Signup and view all the answers
Math.random() returns a random number between 0.0 (inclusive), and 1.0 (________)
Math.random() returns a random number between 0.0 (inclusive), and 1.0 (________)
Signup and view all the answers
A boolean type is declared with the ________ keyword
A boolean type is declared with the ________ keyword
Signup and view all the answers
A Boolean expression is a Java expression that returns a Boolean value: ________ or false
A Boolean expression is a Java expression that returns a Boolean value: ________ or false
Signup and view all the answers
Six other escape sequences are valid in ________
Six other escape sequences are valid in ________
Signup and view all the answers
Boolean Values A boolean type can only take the values true or ________
Boolean Values A boolean type can only take the values true or ________
Signup and view all the answers