Uploaded September 2016 | Updated September 2026, 2 weeks ago
Without firmware you wouldn’t be able to boot up your computer. Firmware is hard coded software; it’s literally positive and negative charges in the silicon ( silicon is the stuff your computer chips are made of ). Don’t forget the hardware only works with positive and negative charges or ones and noughts. When your computer first boots up it cannot understand a programming language so without firmware or physical software that is, positive and negative charges your computer would not be able to boot up.
BIOS is firmware but it’s a class of firmware. BIOS stands for Basic Input Output System; in order for any firmware to be classed as a BIOS all it needs to do is receive basic input and pass back basic output. We’ve all heard of the main BIOS chip that you can change the configuration of on startup, however please do note there’re lots of BIOS firmware found throughout your computer. The main BIOS chip holds the basic instruction set and all those positive and negative charges get stored in memory. You can think of this BIOS chip as a basic set of instructions for your computer to understand itself, if that chip goes wrong your motherboard will be a paper weight.
Programming 101 course:
youtube.com/playlist?list=PLGC-hHIh7l5s6Spz86OT1u0A7kvQH-2B0
This tutorial is brought to you by avelx.co.uk - Coding tutorials to help you grow.
Without firmware you wouldn’t be able to boot up your computer. Firmware is hard coded software; it’s literally positive and negative charges in the silicon ( silicon is the stuff your computer chips are made of ). Don’t forget the hardware only works with positive and negative charges or ones and noughts. When your computer first boots up it cannot understand a programming language so without firmware or physical software that is, positive and negative charges your computer would not be able to boot up.
BIOS is firmware but it’s a class of firmware. BIOS stands for Basic Input Output System; in order for any firmware to be classed as a BIOS all it needs to do is receive basic input and pass back basic output. We’ve all heard of the main BIOS chip that you can change the configuration of on startup, however please do note there’re lots of BIOS firmware found throughout your computer. The main BIOS chip holds the basic instruction set and all those positive and negative charges get stored in memory. You can think of this BIOS chip as a basic set of instructions for your computer to understand itself, if that chip goes wrong your motherboard will be a paper weight.
Programming 101 course:
youtube.com/playlist?list=PLGC-hHIh7l5s6Spz86OT1u0A7kvQH-2B0
This tutorial is brought to you by avelx.co.uk - Coding tutorials to help you grow.





![Computer Programming for Beginners | Programming Language Operators | Ep27
Operators are imperative to programming languages. Removing operators from a programming language is like stripping A to Z from the english language. Seriously? Yes absolutely you need them, no language could function without operators. But what are they? Operators are functions within the compiler of that programming language. An example of an operator…
5 + 5;
… Here we’re using the plus operator which invokes a function within the compiler. The compiler holds the instructions to add whatever number is to the left and to the right of the the plus + operator. The numbers to the left and right are parameters passed into the compiled function which both are 5. Think of a function named with the plus symbol and you’re passing it to that function; in other words…
function +( a , b ){ return a + b; }
… Now evoke the + function…
+( 5 , 5 );
… Or in other words…
5 + 5;
… Operators are inline functions; meaning you just need to type the symbol instead of writing it out function like syntax making it read nicer. Essentially theyre the A to Z of the english language, or that means to create statements or instructions to the compiler.
Just take a look at some of the operators here…
+ - / * % = += /= %= ( ) { } [ ] < > ? || && != ! > >= < <=
… take a look at any script and replace all the operators. Whats left? Well nothing really, you have no way of running any decent set of instructions therefore removing operators would gut any programming language; from brackets to mathematical or string operators a language is hopeless without them.
Programming 101 course:
https://www.youtube.com/playlist?list=PLGC-hHIh7l5s6Spz86OT1u0A7kvQH-2B0
This tutorial is brought to you by http://www.avelx.co.uk/ - Coding tutorials to help you grow. Computer Programming for Beginners | Programming Language Operators | Ep27](https://i.ytimg.com/vi/ey5DhyokwQg/mqdefault.jpg)




