Hi friends, i am new to java. can you explain how java is
secured.

Answers were Sorted based on User's Feedback



Hi friends, i am new to java. can you explain how java is secured...

Answer / imam basha

Java does not use memory pointers explicitly. All the
programs in java are run under an area known as the sand
box. Security manager
determines the accessibility options of a class like reading
and writing a file to the local disk. Java uses the public
key encryption system to allow the java applications to
transmit over the internet in the secure encrypted form. The
bytecode Verifier checks the classes after loading.

Is This Answer Correct ?    1 Yes 0 No

Hi friends, i am new to java. can you explain how java is secured...

Answer / 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

More Core Java Interview Questions

Which Java operator is right associative?

3 Answers  


What is the final keyword in java?

0 Answers  


What is java jit compilers?

0 Answers  


Define a java class.

1 Answers  


What are the practical benefits, if any, of importing a specific class rather than an entire package (e.g. Import java.net.* Versus import java.net.socket)?

0 Answers  






what is difference between servletconfig and servletcontext?

3 Answers   Amdocs,


Explain public static void main(string args[]).

0 Answers  


What is method reference in java?

0 Answers  


What is memory leak and how does java handle it?

0 Answers  


Why set do not allow duplicates in java?

0 Answers  


Explain the difference between private, public, package and protected in java?

0 Answers  


In a container there are 5 components. I want to display all the component names, how will you do that?

0 Answers  


Categories