Number systems
Algorithms
Loops
Intro to Computers
Intro to Coding
200

How many bits are in a byte?

8 bits

200

 A variable in pseudocode is represented by...

carrots 

< > 

200

We can use this code to print horizontally instead of printing vertically

End

200

Computers only understand this language. 

Computer language/Binary/0 and 1s

200

Whats the output?


x = "hello"

print(x*3)

hellohellohello

400

Which number system is used to represent memory addresses?

Hexadecimal 

400

A progrom will do this.


  1. Anything it wants

  2. What you want it to do

  3. Everything perfect the first time

  4. What it is told to do

What it is told to do!

400

A while loop checks this at the end of each run through

condition

400

We compare these two types of computer when talking about, security, age, and speed.

64-bit and 32-bit

400

 What is the output of this code? 

x = ‘hello’ + ‘there’

x = x + 1

print(x)

Error Message

600

Binary to Decimal

1010101

85

600

A good program should always have these 3 parts

Input, Processing, Output

600

Using this code will occur when the for loop is finished.

else

600

The Linux command “pwd” will…

print working directory 

600

Fixed values such as number, letters, and strings are called this

Constant

800

Decimal to Hexadecimal

98

0x62

800

We define python tools as a(n) ________ unlike Java and C++

Interpreter

800

We use this function in a for loop to repeat a loop for a number of times

range()

800

The Linux command “cd” will...

change directory

800

In order: List the Order of Operations for Logic

Parentheses

NOT

AND

OR

1000

Hexadecimal to Binary

0x3FA

11 1111 1010

1000

These are the 5 qualities of Algorithms 

Finite, executable, conditional, terminating, and clear

1000

total = 0

while total <= 10:

print(total)

total = total *2

total should equal 1

1000

How many bytes are in 16 nibbles?


4

1000

This print formatting character starts a new line as well tabs over and starts where you left off

\f

M
e
n
u