Answer: See explanation
Explanation:
1. How is diesel fuel ignited in a warm diesel engine?
B. Heat compression
2. Which type of diesel injection produces less noise?
A. Indirect injection (IDI)
3. Which diesel injection system requires the use of a glow plug?
A. Indirect injection (IDI)
4. The three phases of diesel ignition include:
C. Ignition delay, repaid combustion, controlled combustion.
5. What fuel system component is used in a vehicle equipped with a diesel engine that is seldom used on the same vehicle when it is equipped with a gasoline engine?
D. Water-fuel separator
6. The diesel injection pump is usually driven by a _________________.
A. Gear off the camshaft
7. Which diesel system supplies high-pressure diesel fuel to all the injectors all of the time?
C. High-pressure common rail
8. Glow plugs should have high resistance when _____________and lower resistance when __________________.
B. Warm/cold
9. Technician A says that glow plugs are used to help start a diesel engine and are shut off as soon as the engine starts. Technician B says that the glow plugs are turned off as soon as a flame is detected in the combustion chamber. Which Technician is correct?
D. Neither Technicians A NOR B
10. What part should be removed to test cylinder compression on a diesel engine?
D. A glow plug
Answer:
The code is given below in Python with appropriate comments
Explanation:
# convert list to set
male_names = set(['Oliver','Declan','Henry'])
# get remove and add name from user
remove_name = input("Enter remove name: ")
add_name = input("Enter add name: ")
# remove name from set
male_names.remove(remove_name)
# add new name ij set
male_names.add(add_name)
# sort the set
a = sorted(male_names)
# print the set
print(a)
Answer:
Vc2= V(l+e) ^2/4
Vg2= V(l-e^2)/4
Explanation:
Conservation momentum, when ball A strikes Ball B
Where,
M= Mass
V= Velocity
Ma(VA)1+ Mg(Vg)2= Ma(Va)2+ Ma(Vg)2
MV + 0= MVg2
Coefficient of restitution =
e= (Vg)2- (Va)2/(Va)1- (Vg)1
e= (Vg)2- (Va)2/ V-0
Solving equation 1 and 2 yield
(Va)2= V(l-e) /2
(Vg)2= V(l+e)/2
Conservative momentum when ball b strikes c
Mg(Vg)2+Mc(Vc)1 = Mg(Vg)3+Mc(Vc)2
=> M[V(l+e) /2] + 0 = M(Vg)3 + M(Vc) 2
Coefficient of Restitution,
e= (Vc)2 - (Vg)2/(Vg)2- (Vc)1
=> e= (Vc)2 - (Vg)2/V(l+e) /2
Solving equation 3 and 4,
Vc2= V(l+e) ^2/4
Vg2= V(l-e^2)/4
Answer:
D) AND gate.
Explanation:
Given that:
A certain printer requires that all of the following conditions be satisfied before it will send a HIGH to la microprocessor acknowledging that it is ready to print
These conditions are:
1. The printer's electronic circuits must be energized.
2. Paper must be loaded and ready to advance.
3. The printer must be "on line" with the microprocessor.
Now; if these conditions are met the logic gate produces a HIGH output indicating readiness to print.
The objective here is to determine the basic logic gate used in this circuit.
Now;
For NOR gate;
NOR gate gives HIGH only when all the inputs are low. but the question states it that "a HIGH is generated and applied to a 3-input logic gate". This already falsify NOR gate to be the right answer.
For NOT gate.
NOT gate operates with only one input and one output device but here; we are dealing with 3-input logic gate.
Similarly, OR gate gives output as a high if any one of the input signals is high but we need "a HIGH that is generated and applied to a 3-input logic gate".
Finally, AND gate output is HIGH only when all the input signal is HIGH and vice versa, i.e AND gate output is LOW only when all the input signal is LOW. So AND gate satisfies the given criteria that; all the three conditions must be true for the final signal to be HIGH.
Answer:
1. Costs and frequency of change.
2. The most important ‘non-functional’ requirements. Different systems have different priorities for non-functional requirements.
3. The software lifetime and delivery schedule.
Explanation:
The process of requirement gathering is required in both generic and customized software.
• A document to define the development process is required in all type of software application.
• Updating is required in each type of software. For doing so, new version of each type of software is released.
• Maintenance is an important part of software development. It is required in each type of application development.
• Software has some minimum requirements to execute. So, platform dependability is considered in all software development.