Hexadecimal: Difference between revisions

From Computer Science Wiki
(Created page with "frame|right|This is a basic concept in computer science n mathematics and computing, hexadecimal (also base 16, or hex) is a positional numeral system wit...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[[File:binary.png|frame|right|This is a basic concept in computer science]]
[[File:binary.png|frame|right|This is a basic concept in computer science]]


n mathematics and computing, hexadecimal (also base 16, or hex) is a positional numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A–F (or alternatively a–f) to represent values ten to fifteen.<ref>https://en.wikipedia.org/wiki/Hexadecimal</ref>
In mathematics and computing, hexadecimal (also base 16, or hex) is a positional numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A–F (or alternatively a–f) to represent values ten to fifteen.<ref>https://en.wikipedia.org/wiki/Hexadecimal</ref>
 
== A CS50 video ==
 
<html>
<iframe width="560" height="315" src="https://www.youtube.com/watch?v=u_atXp-NF6w" frameborder="0" allowfullscreen></iframe>
</html>


== Basic Definitions ==  
== Basic Definitions ==  

Latest revision as of 13:43, 16 October 2019

This is a basic concept in computer science

In mathematics and computing, hexadecimal (also base 16, or hex) is a positional numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A–F (or alternatively a–f) to represent values ten to fifteen.[1]

Basic Definitions[edit]

  • bit: A binary digit, either a 0 or 1.
  • byte: A group of 8 adjacent binary digits (8 bits), on which a computer operates as a unit
  • binary: The binary numeral system is a base 2 number system.
  • denary/decimal: The decimal numeral system (also called base 10 or occasionally denary) has ten as its base.[2]
  • hexadecimal: In mathematics and computing, hexadecimal (also base 16, or hex) is a positional numeral system with a radix, or base, of 16[3]. Click here for an excellent video about hexidecimal


A helpful cheat sheet[edit]


NumberSystems.png



What you must know[edit]

You must be able to correctly answer the following questions:

  • Define the term: bit
  • Define the term: byte
  • Define the term: binary
  • Define the term: denary/decimal (they refer to the same thing)
  • Define the term: hexadecimal


Resources[edit]

Click here for a slide deck that covers this topic nicely

References[edit]