Hi friends, i am new to java. can you explain how java is
secured.
Answer Posted / ram
Java is considered more secure than other languages for
several reasons:
* The Java compiler catches more compile-time errors;
other languages (like C++) will compile programs that
produce unpredictable results.
* Java does not allocate direct pointers to memory. This
makes it impossible to accidentally reference memory that
belongs to other programs or the kernel.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a modifier?
what do you mean by classloader?
In java, how we can disallow serialization of variables?
Similarity and difference between static block and static method ?
Is assembly language a low level language?
What are internal and external variables?
What is identifier in java?
What is final keyword?
What is an object's lock and which object's have locks in java programming?
Can we access instance variables within static methods ?
What is classpath?
Describe string intern() methodology
What is final, finally, finalize?
Will the jvm load the package twice at runtime?
Why is the singleton pattern considered to be an anti pattern?