Answer:
missing bracket
Explanation:
Notice that the "body" block has an opening bracket, but no closing bracket. Instead, the "p" block starts before the "body" block has closed. The "body" block is missing a bracket.
Answer:
A: Competent Person
Explanation:
An OSHA “competent person”, by way of training and/or experience, has knowledge of applicable standards and authority to stop work deemed hazardous or that may cause harm to an employee. He/she has the authority, given from above, to correct workplace hazards. Such authority sets OSHA’S competent person apart from OSHA’S qualified person.
the answer is d plz let me know if i got it right
Answer
A) This code snippet ensures that the price value is between 30 and 50
Explanation:
The code snippet given ensures that the acceptable price values lies in the range of 30 and 50 inclusive of the lower and upper bound values. This condition is enforced with the the if...else if... else statements.
The first if statement;
if (price < MIN_PRICE){
System.out.println("Error: The price is too low.");
} checks if user inputted price is less that the MIN_PRICE which is 30 and displays the error message.
The second, an else if statement;
else if (price > MAX_PRICE) {
System.out.println("Error: The price is too high.");
} This checks if the user inputted price is above the MAX_PRICE which is 50 and displays the error message.
finally the else statement; else{ System.out.println("The price entered is in the valid price range.");
} Prints the message confirming a valid price.
technology has impacted society by giving us a way to keep records, data, and documents. Technology has helped us on the education side by giving us a way to do projects, helping us study, and letting us email teachers.
This is the answer to the first questions not sure about the second question