Answer:
Explanation:
t1 = 1000 F = 1460 R
t0 = 80 F = 540 R
T2 = 3600 R
The working substance has an available energy in reference to the 80F source of:
B1 = Q1 * (1 - T0 / T1)
B1 = 100 * (1 - 540 / 1460) = 63 BTU
The available energy of the heat from the heat wource at 3600 R is
B2 = Q1 * (1 - T0 / T2)
B2 = 100 * (1 - 540 / 3600) = 85 BTU
The reduction of available energy between the source and the 1460 R temperature is:
B3 = B2 - B1 = 85 - 63 = 22 BTU
<u>Answer:</u>
The plasma membrane encloses specific structures.
<u>Explanation:
</u>
plasma membrane is also called as cell membrane. Plasma membrane only allows the particle to get in and pass out of the cell by osmosis and diffusion method from the outside environment. It is responsible for the molecular traffic inside the cell.
It helps in maintaining the shape of the cell. It has many proteins in it. Therefore cell membrane are responsible for having specific structures.
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).
I think the answer is B) 1 a.m. and 5 a.m. I very sorry if it is wrong plz let me know if it is wrong bro thankx