Java Program Structure
Java Programming

Java Program Structure

In Java Program Structure, the java system may contain numerous classes of which one and only class characterize the main technique. Classes contain information members and techniques that work on the information members from the class. Strategies may contain information sort revelation and executable articulations. To compose a Java program, we first characterize classes and […]

Rekha Setia 
Java Abstract Window ToolKit(AWT)
Java Programming

Java Abstract Window ToolKit(AWT)

Awt package is used for components and awt. event package is used for action performed. If we want to select only one option we use checkboxes.CheckboxGroup is a set of checkboxes in which we can select only one option(checkbox) . The checkboxes which are set in CheckboxGroup are called “radio buttons”. AWT Example import java.awt.*; […]

Rekha Setia 
An Applet Program to Add Two Numbers
Java Programming

An Applet Program to Add Two Numbers

Applets are simple Java programs that run in web browsers. The creation of web pages is related to Java Applet. An applet is an Internet-based Java program that can be included in an HTML page. An applet is a Java class defined in JDK’s java. applet package. Addition of Two Numbers using Applet import java.awt.*; […]

Rekha Setia 
Animation in Java Applets
Java Programming

Animation in Java Applets

Animation is defined as a rapid(fast/quick) display of text or images. These images or text have to be created in a specific pattern. When they are displayed rapidly it causes an appearance of movement. Example of animation in Applet import javax. swing.*; import java.awt.*; public class animation1 extends JApplet implements Runnable { JLabel labelanimationn; String […]

Rekha Setia 
History of Java
Java Programming

History of Java

Java is an object-oriented programming language developed by James Gosling(James A. Gosling a famous software developer, born on May 19, 1955, Canada) at SUN Micro Systems(Since 1984, he has been associated with Sun  Micro Systems and developed the Java Programming language in 1991). The language was initially called OAK(named after the OAK trees outside Gosling’s […]

Rekha Setia 
Java Variables
Java Programming

Java Variables

What is a variable? Variable is the name of the memory location from which we store the value. This is clear in the above example. A name that holds value. We can use variables to represent data. Representing attributes by variables. An attribute of an object can be referred to by a variable name that […]

Rekha Setia 
Break Statement in Java
Java Programming

Break Statement in Java

A break statement is one of the branching statements(break, continue) provided by Java, which is also used to control the flow of the program. A break statement is used to exit (stop, terminate)from a running loop program on a condition that is predefined, before the loop completion(condition). By using break, you can force immediate termination(stop […]

Rekha Setia 
Compound Assignment Operators in Java
Java Programming

Compound Assignment Operators in Java

The compound assignment operator(+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=,>>>=) is a combination of the assignment operator and another operator such as an arithmetic operator. So they are also known as Shorthand assignment operators. Syntax:   Variable operator variable or constant The following Table shows the compound assignment operators and their usage Operator                    Expression(shorthand)                   meaning +=                             vall+=increasee;                            vall=vall+increasee; -=                             firstt-=25;                                          firstt=firstt-25; […]

Rekha Setia 
Factorial Program in Java
Java Programming

Factorial Program in Java

Factorial number definition: Factorial of n number is the product(*) of all positive integer(1*2*3*4*5) Denoted : 5! Means 5*4*3*3*1=120 here 51 means 5 factorial 3! Means 3*2*1=6 here 3! Means 3 factorial It is very interesting to note that the program with one type of loop can be converted to another program While, a do-while, […]

Rekha Setia