How do u provide security in java
Answers were Sorted based on User's Feedback
Answer / guest
elimination of pointer avoids programsto gain access to
memory location without proper authorization..
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / bhuwan chandra
As the object in Java has properties and behaviour and they
are encapsulated together, no other class can gain access
of the data unless the class is defined as public.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / shreya tanavade
security can be achieved by making the members of the class private..
| Is This Answer Correct ? | 0 Yes | 0 No |
What is double in java?
Which sorting algorithm is best in java?
What is string and example?
what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread
Is this valid in java ? Can we instantiate interface in java?
what are the design patterns in struts?
Can a class declared as private be accessed outside it’s package?
How to check if a list is sorted in java?
Write code to implement bubble sort in java?
How can you traverse a linked list in java?
What is the difference between an if statement and a switch statement?
Write program to print Hello World and print each character address in that string and print how many times each character is in that string? Ex: H: 0 & 1 e:1 & 1 l :2,3,8 & 3 o:4,6 & 2 w:5 & 1 r: 7 & 1 d 9 & 1