for what purpose we use applets ?
Answers were Sorted based on User's Feedback
Answer / sri
For GUI interface between the user and browser, and
browser fields can make easy with the APPLETS.
| Is This Answer Correct ? | 16 Yes | 3 No |
Answer / rajashree
Provides the classes necessary to create an applet and the
classes an applet uses to communicate with its applet
context.
| Is This Answer Correct ? | 6 Yes | 6 No |
Answer / aftab ahmad
applet are always best for user while using java language.to facilitate the user from browser ,we use applet.applet is used on browser.there is no need to write main function while using applet.
| Is This Answer Correct ? | 1 Yes | 4 No |
Explain listiterator and methods in listiterator?
Can we override the main method?
If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?
Which command from the jdk compiles a java program?
Can substring create new object?
What is yield () in java?
how you will prevent inheritance is there any other way other than inheritance?
what difference between throw and throws in exception handling.
why there are multiple catches for a try block.don't tell me that there can be multiple exception of a code segment that's why.tell me the real fact behind this.
How do you replace all in word?
how tha garbage collector know that the object will be deleted? on which algorithm the garbage collector works? what is the working principle of garbage collector? How manay types of garbage collectors r there?
What problems will occur when you don?t use layout managers?