what is bytecode ?explain in detail and watz the difference
between bytecode and machine code?
Answer Posted / dheeraj shandilya
Byte code is a lower-level, platform-independent
representation of source code.Roughly, Python translates
each of source statements into a group of byte code
instructions by decomposing them into individual steps.
This byte code translation is performed to speed execution—
byte code can be run much more quickly than the original
source code statements in text file.
Machine code or machine language is a system of impartible
instructions executed directly by a computer's central
processing unit(cpu).
In case of bytecode in python we dont use cpu.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is polymorphism in java? What are the kinds of polymorphism?
Is there any limitation of using inheritance?
What makes a function well defined?
Explain listiterator and methods in listiterator?
What is exception in java?
What is the difference between procedural and object-oriented programs?
Can we sort a map in java?
What is difference overloading and overriding?
What do you understand by weak reference?
why an outer class cannot be declared as private?
What is private protected in java?
Can we sort hashset in java?
What is hashmap in java?
What's the purpose of static methods and static variables?
What is charat java?