Answer:
warning signs
Explanation:
give directions on your surroundings
Answer: The exit temperature of the gas in deg C is
.
Explanation:
The given data is as follows.
= 1000 J/kg K, R = 500 J/kg K = 0.5 kJ/kg K (as 1 kJ = 1000 J)
= 100 kPa, 

We know that for an ideal gas the mass flow rate will be calculated as follows.

or, m = 
=
= 10 kg/s
Now, according to the steady flow energy equation:




= 5 K
= 5 K + 300 K
= 305 K
= (305 K - 273 K)
= 
Therefore, we can conclude that the exit temperature of the gas in deg C is
.
If particleboard is used as wall sheathing, the grade mark with type M1 or M2 should be stamped on it.
<h3>What is particle board?</h3>
Particle board is notably used as floors underlayment or as a base for parquet floors, timber floors, or for carpets. For this purpose, the particle forums are dealt with with unique chemical compounds and resins to cause them to water-resistant or termite proof.
Waferboard, OSB, and composite plywood, while carried out as wall sheathing, offer a nail base for software of shingle siding.
Read more about the sheathing:
brainly.com/question/5029827
#SPJ1
Answer:
There are 2 expected readings greater than 2.70 V
Solution:
As per the question:
Total no. of readings, n = 60 V
Mean of the voltage, 
standard deviation, 
Now, to find the no. of readings greater than 2.70 V, we find:
The probability of the readings less than 2.70 V,
:

Now, from the Probability table of standard normal distribution:

Now,

Now, for the expected no. of readings greater than 2.70 V:

No. of readings expected to be greater than 2.70 V = 
No. of readings expected to be greater than 2.70 V =
≈ 2
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