3 Parts of a Computer

This blog is about the parts of computers. Let’s start with the CPU. A CPU is a chip that does calculations, such as adding and subtracting, and it does this at a very fast rate. Without a CPU, nothing would happen when you press the power button on your computer. After you have a CPU, […]

Read Full Article β†’

A Program to Calculate the Factorial in Java

public class Factorial { public static void main(String args[]) { int n, c, fact = 1; System.out.println(“Enter an integer to calculate it’s factorial”); Scanner in = new Scanner(System.in); n = in.nextInt(); if (n < 0) System.out.println("Number should be non-negative."); else { for (c = 1; c

Read Full Article β†’

java – The Java Tutorial

The Java Tutorial: A good starting point for learning java, covering topics such as syntax, unique objects, arrays and exceptions. Java Language Specification: The complete specification of the Java language. Java API: For quick reference to all the classes in the Java API. The API documentation is also bundled with the SDK download. java – […]

Read Full Article β†’

What Home Automation Means for Computing, Part 1

The first part of a three-part series on the future of home computing. Read the second part, What Home Automation Means for Computing, Part 2: The Unnatural Interface and the third part, What Home Automation Means for Computing, Part 3: The Data Layer. Home automation is a big deal. Not just because I’m working on […]

Read Full Article β†’

Why You Should Learn Python

Python is a general-purpose programming language that is easy to learn, easy to read and powerful. If you’re just starting out or you’re a seasoned programmer, Python can be fun and simple to use. We’ll go over why you should learn Python and what it can do for your career. And if you’re already convinced, […]

Read Full Article β†’

C Sharp 101

Visual Basic.NET is a computer programming language. It’s an object-oriented language and it can be written in something called a text editor. Hello World At this point, we are not going to go into the nuts and bolts of the Visual Basic language or its syntax. But, we are going to write our first Visual […]

Read Full Article β†’

Our Programming Solutions

Our Programming Solutions: A blog about the various programming solutions available. If you are looking for a good programming solution then you have come to the right place. Our blog will provide you with everything you need to know about finding great programming solutions. We will also be discussing the various scripting languages that can […]

Read Full Article β†’