How to install and compiling a source code with JDK

This tutorial will show you how to compile a source code with Java Development Kit in the most simply way.

Kamis, 08 Januari 2015

Flow control in Programming

Flow control explanation Good morning, in this post, i'm going to resume an explanation about flow control in programming. In computer science, control flow (or alternatively, flow of control) refers to the order in which the individual statements, instructions or function calls of an imperative or a declarative program are executed or evaluated. Within an imperative programming language, a control flow statement is a statement whose execution...

Input/Output in Java

Java Input/Output Hello(again) :D After we understand about Basic Input/Output, now i'm going to post about Input/Output in Java Programming. The Java platform is an isolated entity, a space on your OS in a way, where everything outside this system is its environment. The interaction between the system and its environment is a two-way dialog of sorts. Either the system receives messages from its environment, or it conveys its messages to the...

Basic Input/Output

Basic of Input/Output In computing, input/output or I/O (or informally, io or IO) is the communication between an information processing system (such as a computer) and the outside world, possibly a human or another information processing system. Inputs are the signals or data received by the system and outputs are the signals or data sent from it. The term can also be used as part of an action; to "perform I/O" is to perform an input or output...

Rabu, 07 Januari 2015

Other Data Types (Pointer)

Pointer Explanation What is your first thought when hear "pointer"? You must be thinking about a small arrow which always moving around when you move your mouse, isn't it? :D No no, what i mean about "pointer" here is, in computer science, a pointer is a programming language object, whose value refers directly to (or "points to") another value stored elsewhere in the computer memory using its address. For high-level programming languages, pointers...

Numeric Data Types (Integer)

Good morning :D Like i said in the previous article, i will post explanation of every Data Types and this time is about Numeric Data Types (Integer). Numeric Data Types are consist of such as the integer data types, the floating point, fixed point, bignum or abitory position. Numeric Types (Integer) Explanation Integer, you sure have known what an integer is, in computer science, an integer is a datum of integral data type, a data type which...

Selasa, 06 Januari 2015

Boolean Data Types

Boolean explanation In computer science, the Boolean data type is a data type, having two values (usually denoted true and false), intended to represent the truth values of logic and Boolean algebra. It is named after George Boole, who first defined an algebraic system of logic in the mid 19th century. The Boolean data type is primarily associated with conditional statements, which allow different actions and change control flow depending on...

Data Type in Computer Science and Programming

Hello again :D In this post i'm going to resume some article that i've got on the Internet and make a simple article to you all. The focus in this article is about Data type in Computer Science and Programming. Do you know what that mean? Well, In computer science and computer programming, a data type or simply type is a classification identifying one of various types of data, such as real, integer or Boolean, that determines the possible...

Senin, 05 Januari 2015

If you want it simple, BlueJ is the answer

Good morning, it's a nice day, isn't it? :D Have you ever heard of BlueJ before? BlueJ is a development environment that allows you to develop Java programs quickly and easily. I repeat. Quickly and Easily. Its main features are that it is: Simple. BlueJ has a deliberately smaller and simpler interface than professional environments like NetBeans or Eclipse. This allows beginners to get started more quickly, and without being overwhelmed. Designed...

Meet Processing, an awesome IDE/Editor for Java.

Hello again :D This time, i want to introduce you to an IDE/Editor for Java named Processing. Processing is an open source programming language and integrated development environment (IDE) built for the electronic arts, new media art, and visual design communities with the purpose of teaching the fundamentals of computer programming in a visual context, and to serve as the foundation for electronic sketchbooks. The project was initiated in 2001...