Independency in Object Oriented Programming(OOP’S) languages
In case of Independency in java language: java language on windows operating system when Source Code Compile then we gets Byte Code but special software takes the responsibility of converting byte code into machine code according to operating system.
In java the semi finished code is known as Byte Code and the software which converts byte code into machine code is known as Java Virtual Machine is capable of converting byte code into machine code according to the operating system on which the execution takes place.
Case of Independency in .NET: .NET on windows operating system when Source Code Compile then we gets machine code.
.NET is a collection of languages which allows to write the source code in any .NET language but ones we compile it gets converts into Common Intermediate Language (CIL) can be executed on any machine with the help of Common Language Runtime (CLR) which takes the responsibility of Intermediate Language (IL) code into machine code specific to operating system.
Comments
Post a Comment