In this section, we'll be writing our first java program: the famous Hello World. But before that, you need to make sure that Java is properly configured in your machine. Check this guide on how to pr…
JDK Installation for Microsoft Windows
Before you can create programs written in Java, you need some Java development software. There are several products to choose from. In fact, you may already have one of these products on your own co…
Implementing the QuaQua LookAndFeel in Java
I would like to show you how to implement the QuaQua Look And Feel in Java. I heard someone says that Java isn't that good when it comes to look and feel and Java is only good for algorithms, back…
Basic Computer Concepts and Practices - Lesson 1 Overview of Computer Systems
Computing literacy is defined as learning how to use computers to benefit our life or work. It compasses a general knowledge about computers: Who uses them? What functions do they perform? How are t…
JAVA ASTERISK PATTERN USING LOOPS - PATTERN TWO
This is another simple application in Java that uses for loops in creating asterisk patterns. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 public class PatternTwo { public static void main(Str…
JAVA ASTERISK PATTERN USING LOOPS - PATTERN ONE
One of the most common exercises using Loops in Java is creating different patterns. By creating different asterisk patterns, a newbie to the corners of computer programming can easily grasp the conc…