Applets Questions And Answers
Here you can find Applets Questions and Answers.
Why Applets Questions and Answers Required?
In this Applets Questions and Answers section you can learn and practice Applets Questions and Answers to improve your skills in order to face technical inerview conducted by organisations. By Practicing
these interview questions, you can easily crack any Exams interview.
Where can I get Applets Questions and Answers?
AllIndiaExams provides you lots Applets Questions and Answers with proper explanation. Fully solved examples with detailed answer description. All students, freshers can download Applets Questions and
Answers as PDF files and eBooks.
How to solve these Applets Questions and Answers?
You no need to worry, we have given lots of Applets Questions and Answers and also we have provided lots of FAQ's to quickly answer the questions in the Competitive Exams interview.
Applets Questions and Answers
1. Which of these functions is called to display the output of an applet?
Applets Questions and Answers
2. Which of these methods can be used to output a sting in an applet?
Applets Questions and Answers
3. What does AWT stands for?
Applets Questions and Answers
4. Which of these methods is a part of Abstract Window Toolkit (AWT) ?
Applets Questions and Answers
5. Which of these modifiers can be used for a variable so that it can be accessed from any thread or parts of a program?
Applets Questions and Answers
6. Which of these operators can be used to get run time information about an object?
Applets Questions and Answers
7. What is the Message is displayed in the applet made by this program?
import java.awt.*;
import java.applet.*;
public class myapplet extends Applet {
public void paint(Graphics g) {
g.drawString("A Simple Applet", 20, 20);
}
}
Applets Questions and Answers
8. What is the length of the application box made by this program?
import java.awt.*;
import java.applet.*;
public class myapplet extends Applet {
public void paint(Graphics g) {
g.drawString("A Simple Applet", 20, 20);
}
}
Applets Questions and Answers
9. What is the length of the application box made by this program?
import java.awt.*;
import java.applet.*;
public class myapplet extends Applet {
Graphic g;
g.drawString("A Simple Applet", 20, 20);
}