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
Explain importance of throws keyword in java?
Describe string intern() methodology
Can you access the private method from outside the class?
Why there is no call by reference in java?
How many types of classes are there in java?
Can we overload run() method in java?
Explain method local inner classes ?
What's the difference between int and integer in java?
What is the purpose of void class?
Can we pass null as argument in java?
What does snprintf return?
5 Coding best practices you learned in java?
What is indexof?
Difference between abstract and concrete class ?
Are arrays passed by reference in java?