how we can say java is platform independent, while we
require JVM for that particular Operating System?
Answer Posted / seema choudhary
Java is platform independent b'caz java compiler convert the source file into the Byte code or object code file then JVM(Java Virtual Machine) convert the file into the machine language.
object code file will execute on another machine or any platform by using the JVM.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain heap and queue.
What are the 4 types of functions?
Explain the use of 'auto' keyword in c programming?
What are the c keywords?
What does 1f stand for?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is hungarian notation? Is it worthwhile?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
How do you define a function?
What is fflush() function?
Is main is a keyword in c?
What are enumerated types?
What does %p mean?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is the benefit of using const for declaring constants?