java can provide security ,how can provide?
Answer Posted / 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 |
Post New Answer View All Answers
What is map and hashmap in java?
What is this () in java?
Which of the following is not an isolation level in the JDBC
Can we sort arraylist in java?
Are strings immutable in java?
What is the difference between a factory and abstract factory pattern?
Give any two differences between C++ and java.
Why is java so important?
What is the use of a conditional inclusion statement in Java ?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
Define array. Tell me about 2-D array.
What does int [] mean in java?
What's the difference between int and integer in java?
What are synchronized methods and synchronized statements in java programming?
Which package is always imported by default?