Featured Articles

Learn PHP the Easy Way

If you're a bit new to Web development, you would probably be a bit overwhelmed with the vast variety of indecipherable acronyms that have confounded you at one point or another. However, you should know that if the domain that you want to enter is the Web development domain, there is only one acronym that you need to familiarize yourself with-that is "PHP". The acronym PHP is a recursiv... [Read More]

What is Visual Basics?

It was in 1988 when Alan Cooper, also known as the Father of Visual Basic, introduces a drag-and-drop shell prototype called Tripod to BIll Gates. Microsoft bought the concept and named it as Ruby. The program evolved, thus the birth of Visual Basic. Since its official launch in 1990, the Visual Basic approach has become the norm for programming languages. Visual Basic is a Microsoft-developed pro... [Read More]

Understanding Java Arrays

An array is a type of data structure that consists of a group of elements that can be accessed through indexing. Each element contained in an array is of the same data type. In Java, the array is referenced with a single variable name that is combined with an index number that is enclosed in brackets. Accessing a certain element in a Java array would require writing the variable name with a specif... [Read More]

Javascript 101

JavaScript is a useful scripting language that was designed to look similar to Java but easier to use even by non-programmers. It is mainly used in website design but can also be used to allow scripting access to objects embedded in other applications. With the growing complexity of the World Wide Web, the use of simple HTML may become inadequate in the design of better and more appropriate websit... [Read More]

Common Java Keywords

In computer programming, a keyword is a word or an identifier that has a particular meaning to the particular programming language it is being used. In Java, just like in other types of programming language, keywords are those reserved words that are used in control flow constructs and cannot be used as names for variables or functions. Java keywords have a fixed meaning used to provide syntactic ... [Read More]

Common JavaScript Errors

For first time users, JavaScript can be a pretty confusing language to use on your web pages. But once you get the hang of it, it might prove to be a good and easy scripting language to work with.  JavaScript was designed to have a similar look to Java but was made easier even for non-programmers to use. It is largely used in websites especially to enable scripting access to objects that have... [Read More]

Using Java Arrays

In computer terms, an array is a type of data structure consisting of a group of elements that are accessed by indexing. Each element has the same data type and the array occupies a contiguous area of storage. Java is among several programming languages that support arrays, generalizing operations and functions to work transparently over arrays instead of requiring looping over array members.Progr... [Read More]

Java Language Keywords

Java is a type of programming language, which aims to control the behavior of a machine, particularly a computer. Like natural language, programming language are defined by syntax and semantics describing their structure and meaning respectively. Programming languages are used to facilitate communication about the task of organizing and manipulating information, as well as expressing algorithms pr... [Read More]