Answer:
They use pronouns like They, Them, He, She, It.
Answer:
import java.util.Scanner;
public class TeenagerDetector {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
boolean isTeenager;
int kidAge;
kidAge = scnr.nextInt();
/* Your solution goes here */
isTeenager = (kidAge >= 13) && (kidAge <= 19);
if (isTeenager) {
System.out.println("Teen");
} else { System.out.println("Not teen"); } } }
Explanation:
A condition which check for the teenager age and return a boolean is assigned to isTeenager.
isTeenager = (kidAge >=13) && (kidAge <= 19);
So, if the kidAge is greater than/equal to 13 and less than/19, the boolean isTeenager will be true and the program will output "Teen" else "false" will be output.
The range of age for a teenager is 13 - 19.
Answer:
The student’s actual bed is 75 inches long
Explanation:
Here in this question, we want to find out the length of the student’s actual bed.
The ratio of the model to the real is 1:25
Let the actual length of the bed be x inches
Thus;
1/25 = 3/x
By cross multiplying
1 * x = 3 * 25
x = 75 inches
I think it might be A. mouse sorry if I get it wrong tho hope it’s right.