The two most important polyamides are poly(hexamethylene adipamide) (Nylon 6,6) and polycaprolactam (Nylon 6). Both have excellent mechanical properties including high tensile strength, high flexibility, good resilience, low creep and high impact strength (toughness).
Answer:
Q= 6491.100 kJ/s
Explanation:
Air-Fuel Ratio:
For a combustion reaction the proportion of air that is present in a gaseous substance responsible for the reaction,this proportion is known as air-fuel ratio.The air fuel ratio is calculated using the combustion reaction for the substance.
Considering reaction for the Ethanol as
C₂H₅OH +XO₂(O₂+3.76N₂)→ aCO₂+bH₂O+cN₂
Balancing the equation we get;
a=2,
2b=6
∴ b=3
xO₂=3
The air-fuel ratio
A/F = XO₂+H₂O+xN₂× mass of N₂/mass(fuel)
3.31×31.9+11.28×28.013/46.069
= 8.943
Equivalent ratio = 0.7,
so, heat transfer
Q= m ×Cp×ΔT
= 75×0.7×112.4(1500-400)
Q= 6491.100 kJ/s
1kJ/s=1000w
∴ Q= 6491100 W
<u />
Answer:
Option B
Select the Marketing User checkbox in the user record
Explanation:
The user settings may limit users who can view and set up advanced campaigns. In case there's no keyboard shortcut already programmed to create a new campaign and also the button for creating new campaign isn't visible, the best way to go about it is by selecting the marketing user checkbox in the user record and create a new campaign,
Explanation:
A solid state laser contains a cavity like structure fitted with spherical mirrors or plane mirrors at the end filled with a rigidly bonded crystal. It uses solid as the medium. It uses glass or crystalline materials.
It is known that active medium used for this type of laser is a solid material. This lasers are pumped optically by means of a light source which is used as a source of energy for the laser. The solid materials gets excited by absorbing energy in the form of light from the light source. Here the pumping source is light energy.
Answer:
The solution code is written in Java.
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner inNum = new Scanner(System.in);
- System.out.print("Enter number of toss: ");
- int num = inNum.nextInt();
-
- for(int i=0; i < num; i++){
- System.out.println(toss());
- }
- }
-
- public static String toss(){
- String option[] = {"heads", "tails"};
- Random rand = new Random();
- return option[rand.nextInt(2)];
- }
- }
Explanation:
Firstly, we create a function <em>toss()</em> with no parameter but will return a string (Line 14). Within the function body, create an option array with two elements, "heads" and "tails" (Line 15). Next create a Random object (Line 16) and use <em>nextInt()</em> method to get random value either 0 or 1. Please note we need to pass the value of 2 into <em>nextInx() </em>method to ensure the random value generated is either 0 or 1. We use this generate random value as an index of <em>option </em>array and return either "heads" or "tails" as output (Line 17).
In the main program, we create Scanner object and use it to prompt user to input an number for how many times to toss the coin (Line 6 - 7). Next, we use the input num to control how many times a for loop should run (Line 9). In each round of the loop, call the function <em>toss() </em>and print the output to terminal (Line 10).