CO Processor Activities
In the previous lesson, you learned about hardware part of a system. If you leave I/O then only CPU and memory is left in the… Read More »CO Processor Activities
In the previous lesson, you learned about hardware part of a system. If you leave I/O then only CPU and memory is left in the… Read More »CO Processor Activities
In the previous lesson, you were introduced to the computer organization. You learned about system hardware and main components that make a computer system and… Read More »CO Hardware System
In this article, you will begin learning Computer Organization. You appreciate the complexity involved in building a basic computer and type of specialize components required… Read More »Computer Organization Introduction
In previous lessons, you learned about graph models and some basic graph terminologies. In this lesson, you will learn about simple graph types, we learned… Read More »Simple Graph Types
In the previous lesson, you learned about graph models. In this article, you will learn about basic graph terminologies. There are some important terminologies that… Read More »Graph Terminologies
Graph Theory is a very important concept in mathematics and computer science. A lot of algorithms are based on graphs. The graph is a non-linear data structure, though it look like a tree, it is not the same. A graph is made of nodes and edges. We are now ready to define graphs.
Read More »Graphs and Graph Models
The Big O notation, the theta notation and the omega notation are asymptotic notations to measure the order of growth of algorithms when the magnitude… Read More »Algorithms Order Of Growth
Performance analysis of an algorithm is done to understand how efficient that algorithm is compared to another algorithm that solves the same computational problem. Choosing… Read More »Algorithms Complexities
In this article, you will learn how to represent an algorithm using a pseudo code and elements of pseudo codes. Learning a programming language is… Read More »Algorithms Pseudo Code
Previous Next This is a simple C++ program to compute Net Present Value ( NPV ) for a imaginary project. The NPV is computed to… Read More »C++ Program to Compute Net Present Value (NPV)