JAVA SP T


Lets dive into snapshot of my programs!💻

1. Create an applet showing the string "Hello World" which is embedded in the HTML page.

💡Code:

  import java.applet.Applet;
              import java.awt.Graphics;
              public class pro1 extends Applet
              {
                  public void paint (Graphics g)
                  {
                      g.drawString ("Hello World", 20, 20);
                  }
              }

📸Output :

output