Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. The HTML tag needed to include an applet in a web page is: 2. The HTML attrib

ID: 3651800 • Letter: 1

Question

1. The HTML tag needed to include an applet in a web page is:

2. The HTML attribute used to identify the particular applet is:

3. The utility provided by Oracle (formerly Sun) to allow the display of applets without requiring a web browser is called:

4. The name of the class that must be extended to create an applet is:

5. The applet or JFrame method that returns the Container object that represents the applet's (or JFrame's) space (its visual "real estate") is:

6. The method that has the chief responsibility for drawing or redrawing graphical elements in the applet is called:

7. The class that provides the ability to draw and paint in the user's environment is called the:

8. The Graphics class method for displaying text is:

9. Using the notation (x,y) [for example, (50,80)] write the coordinates of the bottom left pixel in an applet's drawing region that is 200 pixels wide and 300 pixels high:

10. The return type of the drawing and painting methods of the Graphics class is usually:

answer whatever you can please

Explanation / Answer


1. The HTML tag needed to include an applet in a web page is: Applet

2. The HTML attribute used to identify the particular applet is: Code

3. The utility provided by Oracle (formerly Sun) to allow the display of applets without requiring a web browser is called: applet viewer

4. The name of the class that must be extended to create an applet is:JApplet

5. The applet or JFrame method that returns the Container object that represents the applet's (or JFrame's) space (its visual "real estate") is: Applet ()

6. The method that has the chief responsibility for drawing or redrawing graphical elements in the applet is called: paint

7. The class that provides the ability to draw and paint in the user's environment is called the: Graphic class

8. The Graphics class method for displaying text is: drawstring

9. Using the notation (x,y) [for example, (50,80)] write the coordinates of the bottom left pixel in an applet's drawing region that is 200 pixels wide and 300 pixels high: (0,299)

10. The return type of the drawing and painting methods of the Graphics class is usually: void