answersLogoWhite

0

JIT is just in time and is a philosphy rather than a system. The purpose is to hold little or no stock such that you produce your product in a flexible manner to meet customer demand.

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering

What are the Products that can be made using JIT?

African babies.


What in jit compiller?

The JIT (Just In Time) compiler takes the semi-compiled "byte-code" of a language (notably Java), and converts it into proper machine code before execution. This delays the startup time, but provides better execution time.


What are the pros and cons of using a variable product costing reporting system with a JIT inventory system?

Please visit these Web sites for detailed information regarding variable product costing and JIT inventory systems: * http://www.smccd.net/accounts/nurre/online/chtr7.html * http://www.maaw.info/5partsofcostsystem.htm


What is the process of IL compiler and JIT compiler in NET?

In .NET, the Intermediate Language (IL) compiler translates high-level code into IL code, which is platform-independent. When the application is executed, the Just-In-Time (JIT) compiler takes over, converting the IL code into native machine code specific to the host machine. This compilation occurs at runtime, allowing for optimizations based on the current execution environment, and the JIT-compiled code is cached for subsequent calls to improve performance. Together, these components enable .NET applications to run efficiently across different platforms.


Where is compiler in jvm?

In the Java Virtual Machine (JVM), the compiler is not a specific component but refers to the Just-In-Time (JIT) compiler. The JIT compiler is part of the JVM that converts bytecode, generated by the Java compiler (javac), into native machine code at runtime. This process allows Java applications to run more efficiently by optimizing performance during execution, rather than ahead of time. Additionally, the JVM also includes an interpreter that can execute bytecode directly, but the JIT compiler enhances speed by compiling frequently executed code paths.