Review your knowledge on Computer Science here

What is the decimal value(base 10) of 78 in binary form(base 2)?

1001110

What is the decimal value(base 10) of 56 in binary form(base 2)?

111000

What is the binary value(base 2) of 101100 in decimal form(base 10)?

44

What is the output of this code:
var num1 = true;
var num2 = false;
if(num1 || num2 == true){ console.log("true");}
else{ console.log("false");}

true

What is the output of this code:
var num1 = false;
var num2 = false;
if(num1 && num2 == false){ console.log("true");}
else{ console.log("false");}

true

What is the output of this code:
var num1 = true;
var num2 = true;
if(num1 || num2 == false){ console.log("true");}
else{ console.log("false");}

false

Which form of compression takes up more memory:
Lossless or Lossy

Lossless

What does FPS stand for?

Frames Per Second