An Intro to Software Engineering

As software’s importance has grown, the software community has continually attempted to develop technologies that will make it easier, faster, and less expensive to to build and support high-quality computer programs. Because of the complexity of the multitude of domains in both how and where software is developed, the odds of finding a unifying method…

A Simple C++ Program

Let’s walk through the steps to create a simple C++ program that will calculate a circle’s area using the formula area = pi x r2 First we’ll set up our preprocessor directives, and an empty main function. Next we will need to define variables that will be used by the program. In C/C++ we must…

|

Searching Indexs

Now the idea behind weighted search is nice, but it is complicated, requires several extra calculation steps, and can cause other issues. In a Database, you might have heard about indexing. The idea of finding a way to store a subset of your table which means faster searching. Of course, if you are looking through…