answersLogoWhite

0


Best Answer

because in S.I.E the rate of consumption of air is variable

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why willans line method cannot be applied to SI engines?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What analysis methods cannot be applied to experimental research?

which analysis method cannot be applied to experimental research


What are the limitations of laboratory method?

The results cannot be applied to human beings.


Where scientific method in applied?

newton


Where is the scientific method applied?

hypotheses


What kind of method is applied to all objects of a class rather than individual?

A class static method can be applied to all objects of a class.


What geophysical method is commonly applied in oil exploration?

the geophysics method siesmic


What is the method applied by albert Einstein?

pi, 3.14159265358979


What happen if Private is applied to a method in a class?

The method is only accessible to the class and friends of the class.


What search method cannot be performed recursively?

The stack search method cannot be performed recursively.


Which keyword when applied on a method indicates that only one thread should execute the method at a time?

synchronized


Can the scientific method be applied to speculations about the natural world that are not subject to test or observation?

No. The scientific method can only be applied with tests or observation. Before a test occurs, the person doing the speculating may be beginning the scientific method with a question, however.


What is the final keyword in Java?

The final keyword precedes a declared constant which after Instantiation cannot be modified. Examples. final double PI = 3.14; PI = 1234; // does not compile //or final double ONE; ONE = 1; // Instantiated ONE = 2; // does not compile ---------------------------------------- final keyword can also apply to a method or a class. When applied to a method - it means the method cannot be over-ridden. Specially useful when a method assigns a state that should not be changed in the classes that inherit it, and should use it as it is (not change the method behaviour). When applied to a class it means that the class cannot be instantiated. A common use is for a class that only allows static methods as entry points or static final constants - to be accessed without a class instance. A good example is Java's: public final class Math extends Object