Java Tutorials

351. while loop iterations in java

By: aathishankaran : 2007-02-01

Description: One of the most important characteristics of a computer is its ability to execute a series of instructions repeatedly. This cycle introduces the concept of loops, which allow the user great flexibility in controlling the number of times a specific task is to be repeated.


352. Input and output in java

By: aathishankaran : 2007-02-01

Description: In the examples the keyword display was used for displaying the results of programs. The keyword display can be used for displaying constants as well as variables.


353. Introduction to Arrays

By: aathishankaran : 2007-02-01

Description: Variables are used to hold data in memory. For every variable used, there should be and appropriate declaration. If 100 numbers are to be accepted, then 100 different variable declarations are required.


354. Character Arrays

By: aathishankaran : 2007-02-01

Description: Arrays are not confined to numeric elements only. They also can consist of characters. A string is stored as an array of characters.


355. Decision-making:

By: aathishankaran : 2007-02-01

Description: If a certain condition is true, you direct the program to take one course of action. If the condition is false, you direct the program to do something else. This is one of the most fundamental concepts in computer programming. This decision-making can be done by means of the if construct. The if construct makes use of relational and logical operators for decision-making. The simplest form of if construct is as follows:


356. constants and variables

By: aathishankaran : 2007-02-01

Description: Main task of a program is to deal with data. Data used in programs are categorized as: 1. constants 2.variables


357. Components of program

By: aathishankaran : 2007-02-01

Description: The components of a program are explained in the article


358. Why java is important to the Internet

By: aathishankaran : 2007-02-01

Description: The Internet helped catapult java to the forefront of programming, and java, in turn, has had a profound effect on the Internet. The reason for this is quite simple: Java expands the universe of objects that can move about freely in cyberspace. In a network, two very broad categories of objects are transmitted between the server and your personal computer: passive information and dynamic, active programs. For example, when you read your e-mail, you are viewing passive data. Even when you download a program, the program's code is still only passive data. Even when you download a second type of object can be transmitted to your computer: a dynamic, self-executing program. Such a program is and the server yet initiates active agent on the client computer. For example, the server to display properly the data that the server is sending might provide a program.


359. The java Buzzwords

By: aathishankaran : 2007-02-01

Description: No discussion of the genesis of java is complete without a look at the java buzzwords. Although the fundamental forces that necessitated the invention of java are portability and security, other factors also played an important role in molding the final form of the language, the java team in the following list of buzzwords summed up the key considerations:


360. The creation of java

By: aathishankaran : 2007-02-01

Description: Java is related to C++, which is a direct decendent of C. Much of the character of Java is inherited from these two languages. From C, java derives its syntax. Many of java's object-oriented features were influenced by C++. In fact, several of Java's defining characteristics come from of are responses to its predecessors. Moreover, the creation of java was deeply rooted in the process of refinement and adaptation that has been occurring in computer programming languages for the past three decades. For these reasons, this section reviews the sequence of events and forces that led up to java. As you will see, each innovation in languages design was driven by the need to solve a fundamental problem that the preceding languages could not solve. Java is no exception.