<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Binary Exploration by Russell</title>
      <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm</link>
      <description>Made with a little mischief</description>
      <language>en-us</language>
      <pubDate>2020-07-24 13:42:08 UTC</pubDate>
      <lastBuildDate>2026-03-11 16:48:14 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Encoding Images</title>
         <author>miriam_o</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881445</link>
         <description><![CDATA[<div>Each colour of an image is stored as a <strong>binary</strong> number. Each pixel is either black or white. You need a binary value for each different colour. As each pixel is either black or white, this image can be encoded with a value of 0 for white and 1 for black.<br><br>Vectors<br>A <strong>vector image</strong> uses scalable shapes such as straight lines and curves, using coordinates and geometry to precisely define the parts of the image. It is more efficient than bitmaps at storing large areas of the same colour because it does not need to store every pixel as a bitmap does.<br><br></div><div>Vector graphics can be scaled without losing resolution. They can be enlarged or reduced in size - but the file size will stay almost exactly the same.<br><br></div><div><br><br></div><div><br><br><br></div><div><br><br></div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:26:02 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881445</guid>
      </item>
      <item>
         <title>numbers and binary </title>
         <author>nina_r1</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881641</link>
         <description><![CDATA[<div>Computers use a fixed number of <strong>bits</strong> to represent integers. The most common bit-lengths for integers are 8-bit, 16-bit, 32-bit and 64-bit. Programmers choose an appropriate number of bits to represent integers in a program. If you use an 8-bit integer variable in a program, the largest value it can take will be 255.<br><br></div><div>In <strong>binary</strong>, it can be more difficult to represent numbers that contain a decimal point. It can also be difficult to represent extremely small or large numbers. <strong>Pi</strong> is a difficult number for computers to represent as it has an infinite number of decimal places.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:26:17 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881641</guid>
      </item>
      <item>
         <title>Hexadecimal</title>
         <author>josies3</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881715</link>
         <description><![CDATA[<div>Hexadecimal (or <strong>hex</strong>) is a <strong>base 16</strong> system used to simplify how <strong>binary</strong> is represented. A hex digit can be any of the following 16 digits: <strong>0 1 2 3 4 5 6 7 8 9 A B C D E F</strong>.<br><br></div><div>Each hex digit reflects a 4-<strong>bit</strong> binary sequence.<br><br></div><div>This table shows each hex digit with the equivalent values in binary and denary.<br><br></div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:26:24 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881715</guid>
      </item>
      <item>
         <title>Numbers and Binary</title>
         <author>charlotte_m2</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881838</link>
         <description><![CDATA[<div>Numbers can be integers or floating point numbers. Negative numbers are represented using sign and magnitude or two's complement. In CPUs, binary numbers need to be added together.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:26:33 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881838</guid>
      </item>
      <item>
         <title>Encoding audio and video</title>
         <author>amayab2</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881945</link>
         <description><![CDATA[<div>Digital audio and video has a sample rate, bit depth and bit rate. They are usually compressed to reduce file size and stream more efficiently over networks. Compression can be lossy or lossless.</div><div>Digital audio and video has a sample rate, bit depth and bit rate. They are usually compressed to reduce file size and stream more efficiently over networks. Compression can be lossy or lossless.<br>Digital audio and video has a sample rate, bit depth and bit rate. They are usually compressed to reduce file size and stream more efficiently over networks. Compression can be lossy or lossless.<br><br></div><h1>Bit depth</h1><div>Bit depth is the number of <strong>bits</strong> available for each <strong>sample</strong>. The higher the bit depth, the higher the quality of the audio. Bit depth is usually 16 bits on a CD and 24 bits on a DVD.<br><br></div><div>A bit depth of 16 has a resolution of 65,536 possible values (ranging from 0 to 65,535), and a bit depth of 24 has over 16 million possible values (ranging from 0 to 16,777, 216).<br><br></div><div>16-bit resolution means each sample can be any binary value between 0000 0000 0000 0000 and 1111 1111 1111 1111.<br><br></div><div><br></div><div><br></div><div><br></div><div>32,768 + 16,384 + 8,192 + 4,096 + 2,048 + 1,024 + 512 + 256 + 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 = 65,535<br><br></div><div>24 bit means the maximum binary number is 1111 1111 1111 1111 1111 1111 which creates 16,777,215 possible values.<br><br></div><div>When an audio file is created it has to be encoded as a particular file type. <strong>Uncompressed</strong> <strong>audio files</strong> are made when high-quality recordings are created. High-quality audio will be created as a <strong>PCM</strong> and stored in a file format such as <strong>WAV</strong> or <strong>AIFF</strong>.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:26:41 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670881945</guid>
      </item>
      <item>
         <title></title>
         <author>william121</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670882112</link>
         <description><![CDATA[<div>Software programs are sets of instructions. For a <strong>CPU</strong> to execute these instructions, each one must first be translated into <strong>machine code</strong> – simple <strong>binary</strong> codes that activate parts of the CPU.<br><br></div><div>The CPU only performs a few basic functions:<br><br></div><ul><li>performing mathematical operations like addition and subtraction</li><li>moving data from one memory location to another</li><li>making decisions and jumps to a new set of instructions based on those decisions</li></ul><div>A piece of software, such as a game or <strong>web browser</strong>, combines these functions to perform more complex tasks.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:26:55 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670882112</guid>
      </item>
      <item>
         <title></title>
         <author>william121</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670882712</link>
         <description><![CDATA[<div>The <strong>ALU</strong> carries out calculations and makes decisions on the data sent to the processor.<br><br></div><div>Control unit (CU)<br><br></div><div>The CU, which is also called the controller, controls data moving through the processor, and controls the timing of operations and the instructions sent to the processor and the <strong>peripheral devices</strong>. The CU directs the system to carry out program instructions. It does the fetching, decoding, and managing of instructions.<br><br></div><div>Registers<br><br></div><div><strong>Registers</strong> are also called internal memory or immediate access memory stores. A register is a small amount of fast temporary memory within the processor where the ALU or the CU can store and change values needed to execute instructions.<br><br></div><div>Different processors have different sets of registers. One important register is the <strong>program counter</strong>. This keeps track of the running order of the instructions and shows which instruction in the program is due to be executed next.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:27:40 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670882712</guid>
      </item>
      <item>
         <title></title>
         <author>nathan_m2</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670882744</link>
         <description><![CDATA[<div><strong>Binary</strong> is a numerical notation system that uses 2 as a base. Most often, numbers are represented by the Decimal system, which is base 10. In the decimal system, there are ten unique numbers: 0,1,2,3,4,5,6,7,8,9. In the <strong>binary</strong> system there are only two unique numbers: 0,1.</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:27:42 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670882744</guid>
      </item>
      <item>
         <title>Bitmap images</title>
         <author>miriam_o</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670882952</link>
         <description><![CDATA[<div><strong>Bitmap images</strong> are widely used on digital cameras, <strong>smartphones</strong> and online. Common bitmap image file types include <strong>JPEG</strong>, <strong>GIF</strong> and <strong>PNG</strong>. Bitmaps are also known as pixelmaps or raster graphics.<br><br></div><div>Bitmap images are organised as a grid of coloured squares called pixels (short for 'picture elements'). When zooming in or enlarging a bitmap image, the pixels are stretched and made into larger blocks. This is why bitmap images appear as poor quality when enlarged too much.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:27:56 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670882952</guid>
      </item>
      <item>
         <title></title>
         <author>annar26</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670883241</link>
         <description><![CDATA[<div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:28:17 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670883241</guid>
      </item>
      <item>
         <title></title>
         <author>jw31</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670883499</link>
         <description><![CDATA[<div>All computer software is built up of sets of instructions. Instructions are encoded in binary. The fetch-decode-execute cycle is the sequence of steps that the CPU follows to process instructions.<br><br></div><h1>Running a program</h1><div>Software programs are sets of instructions. For a <strong>CPU</strong> to execute these instructions, each one must first be translated into <strong>machine code</strong> – simple <strong>binary</strong> codes that activate parts of the CPU.<br><br></div><div>The CPU only performs a few basic functions:<br><br></div><ul><li>performing mathematical operations like addition and subtraction</li><li>moving data from one memory location to another</li><li>making decisions and jumps to a new set of instructions based on those decisions</li></ul><div>A piece of software, such as a game or <strong>web browser</strong>, combines these functions to perform more complex tasks.<br><br></div><div>The main parts of the CPU<br><br></div><div><br></div><div><br></div><div><br></div><div>Arithmetic logic unit (ALU)<br><br></div><div>The <strong>ALU</strong> carries out calculations and makes decisions on the data sent to the processor.<br><br></div><div>Control unit (CU)<br><br></div><div>The CU, which is also called the controller, controls data moving through the processor, and controls the timing of operations and the instructions sent to the processor and the <strong>peripheral devices</strong>. The CU directs the system to carry out program instructions. It does the fetching, decoding, and managing of instructions.<br><br></div><div>Registers<br><br></div><div><strong>Registers</strong> are also called internal memory or immediate access memory stores. A register is a small amount of fast temporary memory within the processor where the ALU or the CU can store and change values needed to execute instructions.<br><br></div><div>Different processors have different sets of registers. One important register is the <strong>program counter</strong>. This keeps track of the running order of the instructions and shows which instruction in the program is due to be executed next.<br><br></div><div><br></div><div>An introduction to processors</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><ol><li><br></li><li>1</li><li><a href="https://www.bbc.co.uk/bitesize/guides/z2342hv/revision/2">2</a></li><li><a href="https://www.bbc.co.uk/bitesize/guides/z2342hv/revision/3">3</a></li><li><a href="https://www.bbc.co.uk/bitesize/guides/z2342hv/revision/4">4</a></li><li><a href="https://www.bbc.co.uk/bitesize/guides/z2342hv/revision/5">5</a></li><li><br></li></ol><div><strong>Glossary</strong></div><div><strong>More Guides<br></strong><br></div><ol><li><a href="https://www.bbc.co.uk/bitesize/guides/zwsbwmn/revision/1"><strong>Introducing binary</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/guides/zjfgjxs/revision/1"><strong>Numbers and binary addition</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/guides/zp73wmn/revision/1"><strong>Hexadecimal and character sets</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/guides/zqyrq6f/revision/1"><strong>Encoding images</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/guides/z7vc7ty/revision/1"><strong>Encoding audio and video</strong></a></li><li>Instructions</li></ol><div><br>Struggling to get your head round revision and exams?<br><br></div><div>Our team of exam survivors will get you started and keep you going. <br><br></div><div><a href="https://www.bbc.co.uk/bitesize/support"><strong>Meet them here<br></strong></a><br></div><div>Links<br><br></div><div><a href="https://www.bbc.co.uk/education/levels/z98jmp3"><strong>Personalise your Bitesize!<br></strong></a><br></div><div>Sign in, choose your GCSE subjects and see content that's tailored for you.</div><ul><li><a href="http://www.bbc.co.uk/programmes/b006m9ry"><strong>BBC News: Click</strong></a></li><li><a href="http://www.bbc.co.uk/webwise/0/"><strong>BBC WebWise</strong></a></li><li><a href="http://www.bbc.co.uk/news/technology/"><strong>BBC News: Technology</strong></a></li><li><a href="http://www.bbc.co.uk/podcasts/series/jot"><strong>Let's Talk About Tech</strong></a></li></ul><div><br></div><ul><li><a href="https://www.raspberrypi.org/resources/"><strong>Raspberry Pi</strong></a></li><li><a href="https://codeclubprojects.org/en-GB/"><strong>Code Club</strong></a></li><li><a href="https://microbit.org/"><strong>micro:bit</strong></a></li><li><a href="http://code.org/learn"><strong>Code</strong></a></li><li><a href="http://www.learnpython.org/"><strong>Learn Python</strong></a>SUBSCRIPTION</li></ul><div><a href="https://www.bbc.co.uk/bitesize/levels/z98jmp3"><strong>GCSE Subjects<br></strong></a><br></div><ol><li><a href="https://www.bbc.co.uk/bitesize/subjects/z6hs34j"><strong>Art and Design</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z9ddmp3"><strong>Biology (Single Science)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zpsvr82"><strong>Business</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zs6hvcw"><strong>Chemistry (Single Science)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zp266yc"><strong>Combined Science</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z34k7ty"><strong>Computer Science</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zvg4d2p"><strong>Design and Technology</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z9qy6yc"><strong>Digital Technology (CCEA)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zbckjxs"><strong>Drama</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zr9d7ty"><strong>English Language</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zckw2hv"><strong>English Literature</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z9dqxnb"><strong>French</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zkw76sg"><strong>Geography</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z8j2tfr"><strong>German</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zj26n39"><strong>History</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zdn9jhv"><strong>Home Economics: Food and Nutrition (CCEA)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zbtvxyc"><strong>Hospitality (CCEA)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zqmtsbk"><strong>ICT</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zqtw7ty"><strong>Irish – Learners (CCEA)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zqyqh39"><strong>Journalism (CCEA)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zq9xdxs"><strong>Learning for Life and Work (CCEA)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zkrqxnb"><strong>Mandarin</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z38pycw"><strong>Maths</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zc8tfrd"><strong>Maths Numeracy (WJEC)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/ztnygk7"><strong>Media Studies</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zhsvr82"><strong>Modern Foreign Languages</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z9c6y4j"><strong>Moving Image Arts (CCEA)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zpf3cdm"><strong>Music</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/znyb4wx"><strong>Physical Education</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zpm6fg8"><strong>Physics (Single Science)</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z3ckjxs"><strong>PSHE and Citizenship</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zb48q6f"><strong>Religious Studies</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zrkw2hv"><strong>Science</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/zbbw2hv"><strong>Sociology</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z4dqxnb"><strong>Spanish</strong></a></li><li><a href="https://www.bbc.co.uk/bitesize/subjects/z8qmhyc"><strong>Welsh Second Language (WJEC)</strong></a></li></ol><div><br></div><div><br>Explore the BBC<br><br></div><ul><li><a href="https://www.bbc.com/">Home</a></li><li><a href="https://www.bbc.com/news">News</a></li><li><a href="https://www.bbc.com/sport">Sport</a></li><li><a href="https://www.bbc.com/reel">Reel</a></li><li><a href="https://www.bbc.com/worklife">Worklife</a></li><li><a href="https://www.bbc.com/travel">Travel</a></li><li><a href="https://www.bbc.com/future">Future</a></li><li><a href="https://www.bbc.com/culture">Culture</a></li><li><a href="https://www.bbc.com/culture/music">Music</a></li><li><a href="https://www.bbc.co.uk/schedules/p00fzl9m">TV</a></li><li><a href="https://www.bbc.com/weather">Weather</a></li><li><a href="https://www.bbc.co.uk/sounds">Sounds</a></li><li><a href="https://www.bbc.co.uk/usingthebbc/terms/">Terms of Use</a></li><li><a href="https://www.bbc.co.uk/aboutthebbc">About the BBC</a></li><li><a href="https://www.bbc.co.uk/usingthebbc/privacy/">Privacy Policy</a></li><li><a href="https://www.bbc.co.uk/usingthebbc/cookies/">Cookies</a></li><li><a href="https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li><li><a href="https://www.bbc.co.uk/guidance">Parental Guidance</a></li><li><a href="https://www.bbc.co.uk/contact">Contact the BBC</a></li><li><a href="https://www.bbc.co.uk/bbcnewsletter">Get Personalised Newsletters</a></li><li><a href="https://advertising.bbcworldwide.com/">Advertise with us</a></li><li><a href="https://www.bbc.com/usingthebbc/cookies/how-can-i-change-my-bbc-cookie-settings/">AdChoices / Do Not Sell My Info</a></li></ul><div><strong><em><br>Copyright © 2020 BBC.</em></strong> The BBC is not responsible for the content of external sites. <a href="https://www.bbc.co.uk/help/web/links/"><strong>Read about our approach to external linking.</strong></a></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:28:35 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670883499</guid>
      </item>
      <item>
         <title></title>
         <author>william121</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670883800</link>
         <description><![CDATA[<div>Most programmers do not write <strong>programs</strong> as sequences of <strong>binary</strong> digits. They use programming languages like Java, C++, Ruby, BASIC or Python. These are also known as <strong>high-level programming languages</strong>.<br><br></div><div>High-level languages need to be translated into a binary code before the <strong>CPU</strong> can execute them. The benefit of high-level languages is that they are more like everyday written language than sequences of binary numbers, so people find them easier to write and understand.<br><br></div><div><br></div><div><br></div><div><br></div><div>Languages can be defined as <strong>human-readable</strong> or <strong>machine-readable</strong>:<br><br></div><ul><li><strong>Human-readable</strong></li><li> language instructions are encoded in a language that humans can understand more easily. This includes high- and low-level languages. Low-level languages, such as </li><li><strong>assembly language</strong></li><li>, more closely reflect the mechanical workings of the CPU.</li><li><strong>Machine-readable</strong></li><li> language instructions are written using only the binary codes of the processor's instruction set.</li></ul><div><br></div><div>Jackson Gabbard explains how Facebook uses different programming languages for different parts of the application</div><div><a href="https://bam.files.bbci.co.uk/bam/live/content/z9yffg8/transcript"><strong>Download Transcript</strong></a></div><div>Did you know?<br><br></div><div>The first computers were programmed using machine code. Today, it is more common for programmers to use high-level languages.<br><br></div><div>Translators<br><br></div><div>A piece of translator software, which is usually included within programming software, converts high-level languages into <strong>machine code</strong>. These translators are known as <strong>compilers</strong> and <strong>interpreters</strong>. Programs are translated using either a compiler or interpreter.<br><br></div><div>Compiler<br><br></div><div>A <strong>compiler</strong> translates a <strong>human-readable program</strong> directly into an executable, machine-readable form before the program can run.<br><br></div><div>Interpreter<br><br></div><div>An <strong>interpreter</strong> translates a <strong>human-readable program</strong> into an executable, machine-readable form, instruction by instruction. It then <strong>executes</strong> each translated instruction before moving on to the next one. A program is translated every time it is run. Python is an example of an interpreted language.<br><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><ol><li><br></li><li><br></li></ol>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:28:46 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670883800</guid>
      </item>
      <item>
         <title>Colours can be described in hex in the format RRGGBB</title>
         <author>zara_s1</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670884638</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:29:42 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670884638</guid>
      </item>
      <item>
         <title></title>
         <author>william121</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670884909</link>
         <description><![CDATA[<div>Opcode<br><br></div><div>The opcode tells the processor the job that needs to be done. A simple operation might be 'add' or 'subtract'. If we use the analogy of a recipe, the opcode might be 'chop' or 'mix'.<br><br></div><div>Each opcode instruction is very limited in what it can tell the processor to do. A CPU's <strong>instruction set</strong> contains the opcodes that it will accept.<br><br></div><div>There are two types of opcode:<br><br></div><ul><li>an opcode that tells the circuitry which operation to carry out</li><li>an opcode along with some data to be processed</li></ul><div>Operand<br><br></div><div>The operand specifies the data that needs to be acted on. The operand can also refer to a place in memory, such as a <strong>register</strong>.<br><br></div><div>If we use the analogy of a recipe, an ingredient (eg an onion) is the thing being acted upon by the opcode. So the opcode 'chop' could act on the operand 'onion'. If the operand refers to a place in memory, this could be seen as the 'chopping board'. The operand (data) 'onion' could be in the memory location 'chopping board'. The instruction could be to chop the onion on the chopping board.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:30:01 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670884909</guid>
      </item>
      <item>
         <title>the bits bittttttttttsssssssssssssss</title>
         <author>annar26</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670885489</link>
         <description><![CDATA[<div>The bit rate of a file tells us how many <strong>bits</strong> of data are processed every second. Bit rates are usually measured in <strong>kilobits per second (kbps)</strong>.<br><br></div><div>Calculating bit rate<br><br></div><div>The bit rate is calculated using the formula:<br><br></div><div><strong>Frequency × bit depth × channels = bit rate<br></strong><br></div><div>A typical, uncompressed high-quality audio file has a <strong>sample rate</strong> of 44,100 <strong>samples</strong> per second, a bit depth of 16 bits per sample and 2 channels of stereo audio. The bit rate for this file would be:<br><br></div><div><strong>44,100 samples per second × 16 bits per sample × 2 channels = 1,411,200 bits per second (or 1,411.2 kbps)<br></strong><br></div><div>A four-minute (240 second) song at this bit rate would create a file size of:<br><br></div><div><strong>1,411,200 × 240 = 338,688,000 bits (or 40.37 megabytes)<br></strong><br></div><div><br></div><div><br></div><div><br></div><ol><li><br></li><li><br></li></ol>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:30:41 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670885489</guid>
      </item>
      <item>
         <title></title>
         <author>nathan_m2</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670886355</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/460237242/e13fbc4bcf43bcbe0eabe72346c16d1f/image.png" />
         <pubDate>2020-08-06 02:31:41 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670886355</guid>
      </item>
      <item>
         <title>Colours </title>
         <author>zara_s1</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670886806</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://mayburilova.files.wordpress.com/2010/11/html.jpg" />
         <pubDate>2020-08-06 02:32:09 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670886806</guid>
      </item>
      <item>
         <title>examples of binary</title>
         <author>nathan_m2</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670887460</link>
         <description><![CDATA[<div>100 = 4. There is one value of 2<sup>2</sup>.<br>101 = 5. There is one value of 2<sup>2</sup> and one value of 2<sup>0</sup>.<br> These values are added: 4 + 1 = 5.<br>001 = 1. There is one value of 2<sup>0</sup>.<br>10011 = 19. There is one value of 2<sup>4</sup>, one value of 2<sup>1</sup>, and one value of 2<sup>0</sup>.<br> These values are added: 16 + 2 + 1 = 19.</div><div><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:32:55 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670887460</guid>
      </item>
      <item>
         <title>stuff</title>
         <author></author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670887569</link>
         <description><![CDATA[<div>Each color of an image is stored as a binary number. In the black-and-white image below, each pixel is either black or white. You need a binary value for each different colour. As each pixel is either black or white, this image can be encoded with a value of 0 for white and 1 for black.</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:33:02 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670887569</guid>
      </item>
      <item>
         <title></title>
         <author>charlotte_m2</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670888246</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://theshpitz.files.wordpress.com/2010/03/binary.png" />
         <pubDate>2020-08-06 02:33:50 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670888246</guid>
      </item>
      <item>
         <title>You can also break a binary number down into place-value columns, but each column is a power of two instead of a power of ten.For example, take a binary number like 1001. The columns are arranged in multiples of 2 with the binary number written below:</title>
         <author>zach_h</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670888344</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:33:56 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670888344</guid>
      </item>
      <item>
         <title>Example</title>
         <author>josies3</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670888739</link>
         <description><![CDATA[<div>11010100 in binary would be D4 in hex<br>FFFF3 in hex would be 11111111111111110011 in binary<br>:) </div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:34:23 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670888739</guid>
      </item>
      <item>
         <title></title>
         <author>zach_h</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670888823</link>
         <description><![CDATA[<ul><li><strong>Nibble</strong></li><li> - 4 bits (half a byte)</li><li><strong>Byte</strong></li><li> - 8 bits</li><li><strong>Kilobyte</strong></li><li> (KB) - 1000 bytes</li><li><strong>Megabyte</strong></li><li> (MB) - 1000 kilobytes</li><li><strong>Gigabyte</strong></li><li> (GB) - 1000 megabytes</li><li><strong>Terabyte</strong></li><li> (TB) - 1000 gigabytes</li></ul><div>Most computers can process millions of bits every second. A <strong>hard drive's</strong> storage capacity is measured in gigabytes or terabytes. <strong>RAM</strong> is often measured in megabytes or gigabytes.<br><br></div><div>Amount of storage space required<br><br></div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:34:29 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670888823</guid>
      </item>
      <item>
         <title>binary facts</title>
         <author></author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670889429</link>
         <description><![CDATA[<div>The binary numeral system is a way to write numbers using only two digits: 0 and 1. These are used in computers as a series of "off" and "on" switches. In binary, each digit's place value is twice as much as that of the next digit to the right (since each digit holds two values).</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:35:06 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670889429</guid>
      </item>
      <item>
         <title></title>
         <author>zara_s1</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670889672</link>
         <description><![CDATA[<div>here's a video to help enplane's😊😉👍😎😃👀</div>]]></description>
         <enclosure url="https://www.youtube.com/watch?v=tSLKOKGQq0Y" />
         <pubDate>2020-08-06 02:35:24 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670889672</guid>
      </item>
      <item>
         <title></title>
         <author>jw31</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670890396</link>
         <description><![CDATA[<div><a href="https://www.google.com/imgres?imgurl=https%3A%2F%2Fuser-images.githubusercontent.com%2F823277%2F77815798-120d7800-7101-11ea-8a95-844ad6faa55a.png&amp;imgrefurl=https%3A%2F%2Fgithub.com%2FWebAssembly%2Fspec%2Fissues%2F1166&amp;tbnid=GbkV2vsD8tsEuM&amp;vet=12ahUKEwjP_-DGxYXrAhUFm0sFHWzLBToQMygRegUIARDHAQ..i&amp;docid=lVp3Vm0r8lR8cM&amp;w=1005&amp;h=603&amp;itg=1&amp;q=binary%20instructions&amp;safe=strict&amp;client=safari&amp;ved=2ahUKEwjP_-DGxYXrAhUFm0sFHWzLBToQMygRegUIARDHAQ">https://www.google.com/imgres?imgurl=https%3A%2F%2Fuser-images.githubusercontent.com%2F823277%2F77815798-120d7800-7101-11ea-8a95-844ad6faa55a.png&amp;imgrefurl=https%3A%2F%2Fgithub.com%2FWebAssembly%2Fspec%2Fissues%2F1166&amp;tbnid=GbkV2vsD8tsEuM&amp;vet=12ahUKEwjP_-DGxYXrAhUFm0sFHWzLBToQMygRegUIARDHAQ..i&amp;docid=lVp3Vm0r8lR8cM&amp;w=1005&amp;h=603&amp;itg=1&amp;q=binary%20instructions&amp;safe=strict&amp;client=safari&amp;ved=2ahUKEwjP_-DGxYXrAhUFm0sFHWzLBToQMygRegUIARDHAQ</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:36:21 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670890396</guid>
      </item>
      <item>
         <title></title>
         <author>amayab2</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670890745</link>
         <description><![CDATA[<div>01010101010000101010101010111100101010101010111101010101011011110101010001100101010101111000111101010101001010101010101000001010101011110101</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:36:49 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670890745</guid>
      </item>
      <item>
         <title></title>
         <author>william121</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670891045</link>
         <description><![CDATA[<div><a href="https://www.google.com/imgres?imgurl=http%3A%2F%2Fresources.hwb.wales.gov.uk%2FVTC%2FPhase2delivery%2FWales%2FLiteracy%2FKeystage2%2FWriting%2FInstructions%2FIntroduction%2F51.gif&amp;imgrefurl=http%3A%2F%2Fresources.hwb.wales.gov.uk%2FVTC%2FPhase2delivery%2FWales%2FLiteracy%2FKeystage2%2FWriting%2FInstructions%2FIntroduction%2Fdefault.htm&amp;tbnid=xo4MGrl30VyjvM&amp;vet=12ahUKEwji2c-1xYXrAhUzkuYKHVn2DsUQMygRegUIARD1AQ..i&amp;docid=ticZnkgJkhx0rM&amp;w=250&amp;h=237&amp;q=instructions&amp;safe=strict&amp;client=safari&amp;ved=2ahUKEwji2c-1xYXrAhUzkuYKHVn2DsUQMygRegUIARD1AQ">https://www.google.com/imgres?imgurl=http%3A%2F%2Fresources.hwb.wales.gov.uk%2FVTC%2FPhase2delivery%2FWales%2FLiteracy%2FKeystage2%2FWriting%2FInstructions%2FIntroduction%2F51.gif&amp;imgrefurl=http%3A%2F%2Fresources.hwb.wales.gov.uk%2FVTC%2FPhase2delivery%2FWales%2FLiteracy%2FKeystage2%2FWriting%2FInstructions%2FIntroduction%2Fdefault.htm&amp;tbnid=xo4MGrl30VyjvM&amp;vet=12ahUKEwji2c-1xYXrAhUzkuYKHVn2DsUQMygRegUIARD1AQ..i&amp;docid=ticZnkgJkhx0rM&amp;w=250&amp;h=237&amp;q=instructions&amp;safe=strict&amp;client=safari&amp;ved=2ahUKEwji2c-1xYXrAhUzkuYKHVn2DsUQMygRegUIARD1AQ</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:37:11 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670891045</guid>
      </item>
      <item>
         <title>1011010``0`0`0`0`0``0`0`01010101010</title>
         <author>annar26</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670891595</link>
         <description><![CDATA[<div>00011101010101010011010101010101010101010100011111!</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:37:53 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670891595</guid>
      </item>
      <item>
         <title></title>
         <author>william121</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670891679</link>
         <description><![CDATA[<div><a href="https://www.google.com/imgres?imgurl=https%3A%2F%2Fmelloo.co.uk%2Fmedia%2Fcatalog%2Fproduct%2Fcache%2F1%2Fimage%2F9df78eab33525d08d6e5fb8d27136e95%2Fi%2Fn%2Finstructions-ks2-resource-1_1.png&amp;imgrefurl=https%3A%2F%2Fmelloo.co.uk%2Finstructions&amp;tbnid=YMxxKAK0Lu88vM&amp;vet=12ahUKEwji2c-1xYXrAhUzkuYKHVn2DsUQMygIegUIARDjAQ..i&amp;docid=P80TgktD02a1aM&amp;w=800&amp;h=800&amp;q=instructions&amp;safe=strict&amp;client=safari&amp;ved=2ahUKEwji2c-1xYXrAhUzkuYKHVn2DsUQMygIegUIARDjAQ">https://www.google.com/imgres?imgurl=https%3A%2F%2Fmelloo.co.uk%2Fmedia%2Fcatalog%2Fproduct%2Fcache%2F1%2Fimage%2F9df78eab33525d08d6e5fb8d27136e95%2Fi%2Fn%2Finstructions-ks2-resource-1_1.png&amp;imgrefurl=https%3A%2F%2Fmelloo.co.uk%2Finstructions&amp;tbnid=YMxxKAK0Lu88vM&amp;vet=12ahUKEwji2c-1xYXrAhUzkuYKHVn2DsUQMygIegUIARDjAQ..i&amp;docid=P80TgktD02a1aM&amp;w=800&amp;h=800&amp;q=instructions&amp;safe=strict&amp;client=safari&amp;ved=2ahUKEwji2c-1xYXrAhUzkuYKHVn2DsUQMygIegUIARDjAQ</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:37:59 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670891679</guid>
      </item>
      <item>
         <title></title>
         <author>william121</author>
         <link>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670892704</link>
         <description><![CDATA[<div><a href="https://www.google.com/url?sa=i&amp;url=https%3A%2F%2Fweb.uri.edu%2Fdisability%2Finstructions-for-note-takers%2F&amp;psig=AOvVaw1m3Oua2-MB80S3JTRXjJkx&amp;ust=1596767716723000&amp;source=images&amp;cd=vfe&amp;ved=0CAIQjRxqFwoTCLDixqHGhesCFQAAAAAdAAAAABAD">https://www.google.com/url?sa=i&amp;url=https%3A%2F%2Fweb.uri.edu%2Fdisability%2Finstructions-for-note-takers%2F&amp;psig=AOvVaw1m3Oua2-MB80S3JTRXjJkx&amp;ust=1596767716723000&amp;source=images&amp;cd=vfe&amp;ved=0CAIQjRxqFwoTCLDixqHGhesCFQAAAAAdAAAAABAD</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-06 02:39:12 UTC</pubDate>
         <guid>https://padlet.com/russandkate/rg8ajz7ga5bz51pm/wish/670892704</guid>
      </item>
   </channel>
</rss>
