TYBBA(CA) Core Java Slip No 15 Q B

Q.Write an applet application to display smiley face. [25 M]

import java.applet.Applet;
import java.awt.*;

/*
<applet code="Smiley" width=400 height=400>
</applet>
*/

public class Smiley extends Applet
{
    public void paint(Graphics g)
    {
        // Face
        g.setColor(Color.YELLOW);
        g.fillOval(100, 100, 200, 200);

        // Eyes
        g.setColor(Color.BLACK);
        g.fillOval(150, 150, 20, 30);
        g.fillOval(230, 150, 20, 30);

        // Smile
        g.drawArc(150, 180, 100, 60, 0, -180);
    }
}
Spread the love

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top