paper 1 Flashcards
how do you convert from binary to decimal?
You have to use a table that goes 1,2,4,8,16,32,64,128 to put the binary digits into and add them to get the decimal
convert 10100101 to decimal
its 165
how do you convert from decimal to binary?
You have to use a table that goes 1,2,4,8,16,32,64,128 to minus the biggest digit in the table as you go and represent this in 1’s and 0’s
convert 113 to binary
1110001
how do you convert from hexadecimal to binary, and then to decimal value?
you first seperate the two digits and then convert them separately into binary, you then put that binary together and convert all of it into decimal
convert AF to binary then to decimal
the binary is 10101111 an the decimal is 175
how do you add in binary?
you convert both binary digits to decimal, then you add them and convert back again, or you can add them and carry 1 over if there’s more than one in a column
add 1011 and 0111
its 10010
order these, Nibble, Terabyte, Byte, Gigabyte, Megabytes, Kilobyte,Bit
bit, nibble, byte, kilobyte, megabyte, gigabyte, terabyte
what is an algorithm?
A set or rules or instructions that a computer/program has to follow
what is a variable?
An assigned data that can be named and changed
what is selection?
A question asked by the computer to be decided based on the input, that will output and answer as true or false
what is nested selection?
if 1>0:
if 1>0:
what is abstraction?
It involves filtering out – essentially, ignoring - the characteristics that we don’t need in order to concentrate on those that we do.
what is validation?
Validation is an automatic computer check to ensure that the data entered is sensible and reasonable. It does not check the accuracy of data.