1.what is the exact difference between applet and frame?
2.Do we use main method in frames?
Answer Posted / vaishali_bharvada
the two are unrelated concepts.
An Applet is a Java program running inside a web browser,
while a Frame is a kind of window. An Applet may open a
Frame, or it might just run inside its panel.
Are you thinking of running an applet as a standalone
application inside a Frame?
| Is This Answer Correct ? | 48 Yes | 8 No |
Post New Answer View All Answers
What is argument in java?
What language is java written?
What are java annotations?
If an application has multiple classes in it, is it okay to have a main method in more than one class?
What is definition and declaration?
What is qms certification?
Can an interface have a class?
what happens when a thread cannot acquire a lock on an object? : Java thread
What are conditionals and its types?
Give a brief description of java socket programming?
What is java virtual machine and how it is considered in context of java’s platform independent feature?
What is tcp ip in java?
explain what is transient variable in java?
What are the different types of data structures in java?
do I need to use synchronized on setvalue(int)? : Java thread