Home
ReviseIT
Cancel

Functions Python

In this lesson, we’ll learn how to create a function. we’ll cover the following Chapter Section Paragraph -Components of a Function -Implement...

Binary to Denary

Humans tend to use the denary number system. This is the base 10 system that you are familiar with. However, computers work in the binary number system, which is base 2. Denary numbers must be conv...

Sprites

In computer graphics, a sprite is a two-dimensional bitmap that is part of a larger scene (e.g., a 2D video game). Sprites can be static images or animated graphics. Sprites were the standard way ...

Networks

By the end of this lesson, you will be able to: Identify what a network is and how devices in our home connect Create networks for a given scenario Understand basi...

Linear and Binary search

An example of a computer searching algorithm is linear search. This is a simple algorithm used to find a value in a list of data. The algorithm runs as follows: Identify a search term. Look a...

Insertion sort

An insertion sort is less complex and efficient than a merge sort, but more efficient than a bubble sort. An insertion sort compares values in turn, starting with the second value in the list. If ...

Grace Hopper

Grace Hopper was an American mathematician, computer scientist, and high-ranking officer in the U.S. Navy. She helped create the first commercial electronic computer. Early Life Grace Brewster Mu...

Factors that affect the performance of networks

By the end of this lesson, you will be able to: Identify things that affect how well a network performs Explain how they impact performance Suggest ways to improve network performance Fac...

Charles Babbage

Charles Babbage, English mathematician and inventor Charles Babbage is credited with having conceived the first automatic digital computer. He also designed a type of speedometer and the cowcatcher...

Bubble sort

A bubble sort algorithm goes through a list of data a number of times, comparing two items that are side by side to see which is out of order. It will keep going through the list of data until all ...