
What Programming Language to Learn First
As you can see in the image below the path to choosing a programming language is not an easy one. In this article I’m going to help you answer a… Read more »
As you can see in the image below the path to choosing a programming language is not an easy one. In this article I’m going to help you answer a… Read more »
I have been busy with other things, so it’s been a while since my last post. In this post I will be showing you how to program a simple Tic… Read more »
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30… Read more »
A Prime number can only be divided by one and itself. For example; 13 can only be divided by 1 and 13. Here’s a C++ code that prints out the… Read more »
A prime number is a positive integer that has exactly two factors, 1 and the number itself. We know 0 is neither a positive nor a negative number. Otherwise, 0… Read more »
A palindromic number reads the same both ways eg. 10201, 12321, 14641, 40804, 44944, 69696 , here is a Java code that displays the largest Palindrome numbers from the product… Read more »
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30… Read more »
In Mathematics the Fibonacci numbers are the following sequence of numbers 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55….. the first two numbers are 0 and 1… Read more »
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 try { String host = "server-box"; InetAddress addr = InetAddress.getByName(host);… Read more »
In this article, I’m covering the common task of reading and writing files that contain text that are created with a simple text editor like Notepad or Wordpad. To read… Read more »
Enter your email and stay on top of things,