How has the sandbox changed with Java 2?
Answers were Sorted based on User's Feedback
Answer / guest
Java 2 provides the capability to specify a security policy
that determines the accesses that an applet or application
is allowed based on its source and the identities of those
who have signed the code.
Is This Answer Correct ? | 0 Yes | 0 No |
What is a modular application? What does module-relative mean?
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }
Explain the life cycle of servlet?
What is deadlock?
What is the purpose of the notifyall() method?
Do I have to use jsps with my application?
How two threads will communicate with each other?
Differences between applications and applets?
Can you give me a simple example of using the requiredif validator rule?
Is infobus easy to use?
What are synchronized methods and synchronized statements?
What is a compilation unit?