Write a complete Java applet that displays the phrase “Welcome to my world!” in the center of the applet.

What will be an ideal response?


```
import javax.swing.JApplet;
import javax.swing.JLabel;
import java.awt.Container;
import java.awt.BorderLayout;

public class myApplet extends JApplet
{
public void init()
{
Container contentPane = getContentPane();
contentPane.setLayout(new BorderLayout());
JLabel label = new JLabel("Welcome to my world!");
contentPane.add(label, BorderLayout.CENTER);
}
}
```

Computer Science & Information Technology

You might also like to view...

Conduct an experiment using your usual (informal) method to search for the name “John Lewis” in your local phone book, and compare the number of pages you look at with the number in Exercise 3(a).

What will be an ideal response?

Computer Science & Information Technology

________ options enable you to change how PowerPoint corrects and formats your text

Fill in the blank(s) with correct word

Computer Science & Information Technology

Use the ____ statement to refer to the properties of an object without listing the object itself.

A. with B. do C. use D. object

Computer Science & Information Technology

Briefly describe the role of the inference engine and the explanation facility components of an expert system.

What will be an ideal response?

Computer Science & Information Technology