Answer: A) Product identifier
Explanation:
A product identifier is a means, name or number used to identify hazardous and dangerous chemicals on a label or in the SDS( safety data sheet). It provides a special means which helps the user to identify the chemical. Any product identifier used should permit a cross-references to be made among the listed hazardous chemicals required in the written hazard communication program, and the label including SDS(safety data sheet).
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number
Answer:
Accuracy and precision allow us to know how much we can rely on a measuring device readings. ±.001 as a "accuracy" claim is vague because there is no unit next to the figure and the claim fits better to the definition of precision.
Explanation:
Accuracy and Precision: the golden couple.
Accuracy and precision are key elements to define if a measuring device is reliable or not for a specific task. Accuracy determines how close are the readings from the ideal/calculated values. On the other hand, precision refers to repeatability, that is to say how constant the readings of a device are when measuring the same element at different times. One of those two key concepts may not fulfill the criteria for measuring tool to be used on certain engineering projects where lack of accuracy (disntant values from real ones) or precision (not constant readings) may lead to malfunctons and severe delays on the project development.
±.001 what unit?
The manufacturer says that is an accuracy indicator, nevertheless there is now unit stated so this is not useful to see how accurate the device is. Additionally, That notation is more used to refer to device tolerances, that is to say the range of possible values the instrument may show when reading and element. It means it tells us more about the device precision during measurments than actual accuracy. I would recommend the following to the dial calipers manufacturers to better explain its measurement specifications:
- Use ±.001 as a reference for precision. It is important to add the respective unit for that figure.
- Condcut test to define the actual accuracy value an present it using one of the common used units for that: Error percentage or ppm.
Answer:
The problem is that the pumps would consume more energy than the generators would produce.
Explanation:
Water has a potential energy associated with the height it is at. The higher it is, the higher the potential energy. When water flows down into the turbines that energy is converted to kinetic energy and then into electricity.
A pump uses electricity to add energy to the water to send it to a higher potential energy state.
Ideally no net energy woul be hgenerate or lost, because the generators would release the potential energy and pumps would store it again in the water. However the systems are not ideal, everything has an efficiency and losses. The losses would accumulate and the generator would be generating less energy than the pumps consume, so that system wastes energy.
What should be done is closing the floodgates to keep the water up in the dam at night producing only the power that is needed and releasing more water during the day.