In Morse test, the engine is first run at the required speed by adjusting the throttle in ___________

In Morse test, the engine is first run at the required speed by adjusting the throttle in ___________ Correct Answer SI engine

While performing the morse test, the engine is first run at the required speed by adjusting the throttle in SI engine whereas the pump rack is adjusted in the CI engine.

Related Questions

Who along with Samuel Morse developed Morse code?
Analyze the following code: public class Test implements Runnable{ public static void main(String[] args){ Test t = new Test(); } public Test(){ Thread t = new Thread(this); t.start(); } public void run(){ System.out.println("test"); } }