Answer:
For example, a 5W- motor oil will flow better at lower temperatures than a 15W- motor oil. The higher number, following the “w” refers to hot weather viscosity, or how fluid your oil is at hot temperatures. The higher the number, the thicker the oil at a specified temperature. so it's B
Explanation:
Answer:
- import java.util.Scanner;
- import java.util.Random;
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner input = new Scanner(System.in);
- Random rand = new Random();
-
- System.out.print("Enter number of questions you wish to practice: ");
- int n = input.nextInt();
-
- int i = 1;
- while(i <= n){
- int num1 = 1 + rand.nextInt(10);
- int num2 = 1 + rand.nextInt(10);
- int answer = num1 * num2;
- System.out.print("Question " + i + ": " + num1 + " x " + num2 + " = ");
- int response = input.nextInt();
-
- if(response == answer){
- System.out.println("Correct answer!");
- }
- else{
- System.out.println("Wrong answer. It should be " + answer);
- }
- i++;
- }
- }
- }
Explanation:
Firstly, we import Scanner and Random classes (Line 1-2) as we need to get user input for number of questions and generate random number in each question.
Next, create a Scanner and Random object (Line 7-8). Prompt user to input number of question and get the input using the Scanner object (Line 10-11).
Next create a while loop and set the condition to loop for n number of times (based on number of questions) (Line 14). In the loop, use Random object nextInt method to generate two integers between 1 -10 (Line 15-16). Prompt user to input an answer using the Scanner object (Line 18-19). If the response is matched with answer print a correct message (Line 21-22) other wise inform user they write a wrong answer and show the correct answer (Line 24-25).
Answer:
B
Explanation:
Aluminium doesn't rust unless exposed to copper for a duration of time.
Answer
Being drunk, texting, being distracted
Explanation:
Hope this helped.
Answer:
Option D - the moisture content at turbine exit will decrease
Explanation:
In an ideal rankine system, the phenomenon of superheating occurs at a state where the vapor state of the fluid is heated above its saturation temperature and the phase of the fluid is changed from the vapor phase to the gaseous phase.
Now, a vapour phase has two different substances at room temperature, whereas a gas phase consists of just a single substance at a defined thermodynamic range, at standard room temperature.
At the turbine exit, since it's just a single substance in gaseous phase, it means it will have less moisture content.
Thus, the correct answer is;the moisture content at turbine exit will decrease