Computer Science, asked by samirthakur1704, 6 months ago

define the following in the terms of Java
1.Robustness
2.probability
3.Jvm
4.platform independent ​

Answers

Answered by pauljohan40
0

Answer:

1.Robust simply means strong. Java is robust because: ... There is automatic garbage collection in java which runs on the Java Virtual Machine to get rid of objects which are not being used by a Java application anymore. There are exception handling and the type checking mechanism in Java. All these points make Java robust.

2.Probability tells you which outcome -- heads or tails -- is more likely to occur in any given event. You can determine the probability of a particular outcome by dividing the number of times that the outcome has occurred by the total number of events.

3.The JVM has two primary functions: to allow Java programs to run on any device or operating system (known as the "Write once, run anywhere" principle), and to manage and optimize program memory.

4.When the Java program runs in a particular machine it is sent to java compiler, which converts this code into intermediate code called bytecode. ... JVM recognizes the platform it is on and converts the bytecodes into native machine code. Hence java is called platform independent language

Hope this Helps.

Similar questions