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 the concatenation operator in java?
Is cout buffered?
What is lazy initialization in java?
what is method reference in java 8?
What does += mean coding?
Java is Pass by Value or Pass by Reference?
What does %d do in java?
Which list does not allow duplicates in java?
Why does java not support operator overloading?
How much ram can a 64 bit processor theoretically?
What is the default size of set in java?
which one is more efficient int x; 1. if(x==null) 2.if(null==x) state which one either 1 or 2?
Explain importance of throws keyword in java?
Is there any limitation of using inheritance?
What is a class object?