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 the preferred size of a component in java programming?
How to convert string to byte array and vice versa?
How is abstraction implemented in java ?
What is a singleton puppy?
What are inbuilt functions in java?
Explain about method local inner classes or local inner classes in java?
Is it possible to use string in the switch case?
When do I need to use reflection feature in java?
What are the two ways of implementing multi-threading in java?
What is the use of http-tunneling in rmi?
What is the difference between quicksort & mergesort? When should they be used? What is their running time?
Why do we override tostring method in java?
How many bits is a string?
What is the meaning of I ++ in java?
Can you write a java class that could be used both as an applet as well as an application?