java can provide security ,how can provide?

Answers were Sorted based on User's Feedback



java can provide security ,how can provide?..

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

java can provide security ,how can provide?..

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

java can provide security ,how can provide?..

Answer / gaurav

java is a secure language because of ByteCode.
A bytecode is a just like as machine code, whenever we
compile a src program in java, compiler creates a .class
file this .class file is called as bytecode. Then with the
help of this byte code java application luncher runs the
program and create's exe of a program....
java doesn't provide acess to memory directly that's why
it's also called a Robustic language.

Is This Answer Correct ?    15 Yes 8 No

java can provide security ,how can provide?..

Answer / chidananada p.d

java consists of JAAS [java authentication and authorization
services ],By implementing these classes into our
application we can provide security.But in other
technologies there is no security concepts available directly.

Is This Answer Correct ?    1 Yes 0 No

java can provide security ,how can provide?..

Answer / anjali

java provides security by giving name space concept,
whenever a classloader loads classes,for each class loader
there is a seperate space thats get created , similary when
it loads applets its loads them in seperate name space so
that code in different name sapce remins unaffected by any
currupted code in any other name space

Is This Answer Correct ?    3 Yes 3 No

java can provide security ,how can provide?..

Answer / aanchal arora

because their are no pointers included in java. as we all know pointers break security due to which other hacking programs and virus can be developed ....
like in c if we add two pointers it crashes the program .......and in java its not possible

Is This Answer Correct ?    3 Yes 3 No

java can provide security ,how can provide?..

Answer / nithin nataraj.i

JAVA is Platform Independent System Such that it should be Run on any Environment.Since Java does not contains .exe files instead it contains .class files which are in Machine level can be understandable. We cannot convert these .class files to .java files So it is Secure.

Java Software will be in the form of .jar and .war which provides a Firewall so that External programs cant be interrupted.

Is This Answer Correct ?    1 Yes 2 No

java can provide security ,how can provide?..

Answer / roshan

JAVA IS SECURE LANGUAGE BECAUSE OF ROBUSTIC IT MENS SRE PROG
CONVERTED INTO BYTE CODE THAT IS (ENCYRPTED FORMAT)..AND
ASLO JAVA CRATE AN FIRWALL IN NETWORKING.MOST IMPORTANT IS
IT RUN ON JAVA RUN TIME ENVIROMENT OTHER THING CAN'T SUPPORT
LIKE VIRUS.

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More Core Java Interview Questions

How to synchonise HashMap

4 Answers   IBM,


Is it possible to create Userdefined Unchecked Exception also?If Yes, give an example?

2 Answers   ADP,


what is the JNDI?

3 Answers  


How use .contains in java?

0 Answers  


How many types of classes are there in java?

0 Answers  






What is the primary benefit of encapsulation?

0 Answers  


What is cr keyboard?

0 Answers  


Why we override equals() method?

0 Answers  


What is difference between string and new string?

0 Answers  


When a thread is executing synchronized methods , then is it possible to execute other synchronized methods simultaneously by other threads?

0 Answers  


what is difference between Interface and abstract class

2 Answers   GCPL,


What is better- service oriented or batch oriented solutions?

0 Answers   Amdocs,


Categories