JBM Online banking project by Jawed Akhtar

ByUnknown

JBM Online banking project by Jawed Akhtar

JBM online Banking provides online Transaction from one Account to another, check your balance Status, mini Statements, Aadhar card update and status , mail Facility, Password Update Managements, add beneficiary account facilities, etc To sum up, the mission of JBM online Banking. “to...Read More

Program to create cartoon in applet and play using thread

ByUnknown

Program to create cartoon in applet and play using thread

In this program to create applet and using paint to create more design and also  play design. For example  design (cartoon) start from left side and move to right side. Let’s start to program 1.      Create java class with any name package applet_demo; import java.applet.Applet; import...Read More

Program to create one or more rectangle or circle in applet and play using thread

ByUnknown

Program to create one or more rectangle or circle in applet and play using thread

In this program to create applet and using paint to create more design and also  play design. For example one design start from left side and move to right side and turn to other side creating like loop. In same time other design...Read More

program to print employee details using multilevel inheritance

ByUnknown

program to print employee details using multilevel inheritance

in this program used multi level inheritance,  method and switch statement.  //program to print employee details using multilevel inheritance package management; import java.util.Scanner; class teacher{     void tech(){         System.out.println("!!!Subject!!!\t\t!!Empid!!\n1)java\t\t\t101\n2)php\t\t\t102\n3)Android\t\t103\n\n");     } } class Admin extends teacher{         void admin(){         System.out.println("!!!Salary!!!\t\t!!Shift!!\n1)rs25,000\t\t9:00 AM...Read More

Method Overriding in java

ByUnknown

Method Overriding in java

Same method (name, parameter) declare in both main class and sub class, that method is known as method overriding. same method used in single class that method is known as method overloading, while same method used in more than one class or different...Read More

Nested class demo program

ByUnknown

Nested class demo program

The Java programming language allows you to define a class within another class. Such as that class is known as nested class. Syntax: class OuterClass{             . . . class  InnerClass{                         . . .             } }  Example: OUTPUT: Nested classes...Read More

Constructor demo program

ByUnknown

Constructor demo program

Constructor: 1.      Name same as class name 2.      No return type 3.      Initialization 4.      Can has parameter 5.      Constructor can be overloaded 6.      Constructor called when object is created Declaration:             class Const_Demo {             Const_Demo(){            //constructor name must be same as class...Read More

e gift