java can provide security ,how can provide?
Answer Posted / liza
Java Compiler creates .class file from the .java file and
this .class file comprises of bytecode,which is in encrypted
format.Java bytecode can be run on JRE.so JRE needs to be
installed for executing bytecode.
Java does not support pointer concept.That's why there is no
direct access to memory.This makes java robust and secure.
Java is provided with firewall between the networked
application and the computer.
Java provides access specifiers(
friendly(default),public,protected,private) which declare
which entity cannot be accessed from where.
Is This Answer Correct ? | 27 Yes | 1 No |
Post New Answer View All Answers
What is blank final variable?
What is a java predicate?
Can we declare the main method of our class as private?
How do you create a method in java?
How many techniques can be employed to create a string object?
What is the difference between size and length in java?
Does the order of public and static declaration matter in main method?
What are the main uses of java?
Explain what do you mean by functional overloading in java?
What is meant by object?
What is string immutability?
how does the run() method in runnable work? : Java thread
What does it mean to flush a file?
What is callablestatement? How you can call stored procedure to pass in parameter?
What is the difference between comparison done by equals method and == operator?