java can provide security ,how can provide?
Answer Posted / vatti
Java doesn't allow direct access to memory like C/C++.
Memory access violations are the root cause of 90% (approx,
maybe more) of all software bugs/problems. This is also the
root cause of many viruses, etc. But there are many more
reasons why Java is secure...
Java provided with FireWall between a networked application
and your computer.
objects have access levels(private,public,protected)
class file is in bytecode format(ie. encrypted)
| Is This Answer Correct ? | 53 Yes | 2 No |
Post New Answer View All Answers
What is a method in java?
Can we have two methods in a class with the same name?
What is isa relationship?
What is heterogeneous in java?
What is the use of list in java?
Describe the process as to how substring() methodology mechanisms in java.
What is Mutex (Mutual Exclusion Object) ?
What is difference between static and abstract class?
Can an interface be final?
In a container there are 5 components. I want to display all the component names, how will you do that?
What is singleton class in java and how can we make a class singleton?
In which order the iterator iterates over collection?
What is bufferedreader in java?
What is vector capacity in java?
How do listeners work?