Articles by Team EasyExamNotes

LEX

LEX is a popular lexical analyzer generator used in compiler construction. It is a tool that helps in generating lexical analyzers, also known as scanners … Read more

File handling

FILE HANDLING: File handling in java comes under input output (IO) operations. Classes used in file handling in Java are present Java IO package (java.io). … Read more

JDBC

JDBC (Java Database Connectivity) is an API (Application Programming Interface) in Java that allows Java programs to interact with databases. It provides a standard set … Read more

Applet mouse event handling

APPLET MOUSE EVENT: import java.awt.*; import java.awt.event.*; import java.applet.*; public class MouseApplet extends Applet implements MouseMotionListener{         public void init(){                     addMouseMotionListener(this);                     setBackground(Color.WHITE);                     … Read more

Applet digital clock

APPLET DIGITAL CLOCK: import java.applet.*;  import java.awt.*;  import java.util.*;  import java.text.*;    public class AppletDigitalClock extends Applet implements Runnable {       Thread th = … Read more

Applet image display

APPLET IMAGE DISPLAY: import java.awt.*; import java.applet.*;     public class AppletDisplayImage extends Applet {  Image picture;  public void init() { picture = getImage (getDocumentBase(), http://nebula.wsimg.com/a418036bd85efa32bdb96f5dbb77e203?AccessKeyId=F7C1E0F1DEF38C4D96C2&disposition=0&alloworigin=1 … Read more