What are the main features of java?
Answer / Sumit Kumar Paswan
Some key features of Java include platform independence, object-oriented programming, automatic memory management (garbage collection), robust exception handling, extensive standard libraries, and security through bytecode verification.
| Is This Answer Correct ? | 0 Yes | 0 No |
Given: 1. package test; 2. 3. class Target { 4. public String name = “hello”; 5. } What can directly access and change the value of the variable name? 1 any class 2 only the Target class 3 any class in the test package 4 any class that extends Target
is JVM platform dependent or independent..?
11 Answers IBM, Tech Mahindra,
How to make a class or a bean serializable?
Why is singleton instance static?
Can we serialize singleton class?
What is abstract class? Explain
When a thread is executing synchronized methods , then is it possible to execute other synchronized methods simultaneously by other threads?
Explain the importance of join() method in thread class?
What is ‘has a’’ relationship in java?
What is the difference between serializable and externalizable interfaces?
What is namespace in java?
State some situations where exceptions may arise in java?