Articles by Team EasyExamNotes

Data structure in CD

Symbol table Symbol table is an important data structure created and maintained by compilers in order to store information about the occurrence of various entities … Read more

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