Both the technicians are correct.
Explanation
Intake air temperature sensor is used in engines of vehicles to monitor the temperature of air entering the engine.
They are basically made of thermistors whose electrical resistance changes according to temperature.
Depending upon the reading and accuracy of intake air temperature sensor, the power-train control module (PCM) will decide about the air and fuel mixture ratio in the engine.
The hot air in engine requires less fuel to operate the engine parts while cold air requires more fuel to operate the engine.
The ratio of air and fuel mixture should be maintained in the engine and it is done by PCM only after getting the input from IAT. So technician B is saying correct.
Also the IAT works as a backup to support the engine coolant temperature sensor by the computer.
As the IAT checks the temperature of outside air, it will help to change the coolant temperature of the engine based on the environment.
Thus technician A is also correct. So both the technicians are correct.
Answer:
modulus =3.97X10^6 Ib/in^2, Poisson's ratio = 0.048
Explanation:
Modulus is the ratio of tensile stress to tensile strain
Poisson's ratio is the ratio of transverse contraction strain to longitudinal extension strain within the direction of the stretching force
And contraction occur from 0.6 in x 0.6 in to 0.599 in x 0.599 in while 2 in extended to 2.007, with extension of 0.007 in
Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
Answer:
use the dimensions shown in the figure