Java

Structure of a Method in JAVA

Submitted by moazkhan on

Structure of a Method in JAVA

In this tutorial you will learn 1. Basic structure of a method 2. Input into methods 3. Output from methods 4. How Methods are used in JAVA program Basic structure of a method The function in C programming are referred to as Methods in JAVA. They are the set of instruction which are clustered together to perform some specific operation to the input they are given and then the data is returned back to the main of the program or to the Method in which they arr called.

Introduction to Object Oriented Programming

Submitted by moazkhan on

Introduction to Object Oriented Programming

In this part of the tutorial you will learn 1) What is object oriented programming 2) Why to use object oriented programming 3) Object oriented and JAVA 4) Advantages of object oriented programming What is object oriented programming? In object oriented type of programming we create the objects which has certain properties and the methods (functions) associated with it and we use these methods to perform the operations on the object.

The Switch Statement in JAVA

Submitted by moazkhan on

Calculator Using Switch

In this tutorial you will learn: JAVA coding essentials Taking input in java console What is switch statement Difference between switch and if else statement JAVA code for making the calculator using Switch Statements What is switch statement In JAVA programming the switch is the implementation by which we evaluate a variable and on the basis of which we change the control flow of our program. Through switch statement we define the multiple task which will be executed depending upon the value inside the variable.

Coding essentials and Java Input

Submitted by moazkhan on

Coding essentials and Java Input

In this tutorial you will learn: 1. Some coding essentials 2. Taking input in java console 3. Basic JAVA console program on conditional statements I have setting up the IDE now it’s time to start coding. The learning curve will be a little steep as we have much to cover. Some Coding Essentials This perhaps one of the most important things while programming in any language.

Introduction to JAVA

Submitted by moazkhan on

Introduction to JAVA

In this tutorial you will learn: 1. Setting up the Programming Environment 2. Setting up IDE 3. Basic JAVA Overview 4. Basic JAVA console Program Before starting coding you need to first setup the environment for coding. For that first go to Google and download JAVA development kit (JDK). Using this link. Download JDK After downloading you simply need to install the JDK.

Learn Basics of JAVA in 15 days

Submitted by moazkhan on
In this book, you will learn the basic of Java programming. Java is now become the most widely used programming language in the world. Its multiplatform support is the foundation why it becomes widely used language to most programmer. If you want to learn android programming, this tutorial will greatly help you in one way or another. Even if you don’t have any knowledge on C/C++. This tutorial will cover basic programming about Java. So stay tuned and master Java programming in 15 days.

ATM Machine

Submitted by arszak on
A simple console based ATM machine written in java. This application utilizes the scanner object to get information from the user. The application uses obbj standards such as objects, classes, object reference's and inheritance. Hope you learn from this.

Number To Words in Java

Submitted by donbermoy on
This tutorial will teach you how to create a program that will convert a number and will become words in java. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of NumberToWords.java. 2. Import the io library as we will need a user input. import java.io.*; 3. Now, we will declare our global variables. We will have variables for the inputting