Making Decisions
CS - Vocabs
Coding
Conditionals
Random CS
100

Takes the opposite.

NOT

100

A precise set of rules for how to solve a problem.

Algorithms 

100

Which symbol is used to show two values are equal?

==

100

What is the meaning of this relational operator:


                                 >= ???


Greater than or equal to

100

Which computer hardware device performs the functions like click, point, drag, or select?

Mouse

200

Tests if both conditions are true.

AND

200

Keyword used to join test conditions in if statements.

Boolean 

200

What does != mean?

Not

200

Command that tests a true/false condition.

If Statement 

200

What is the name of the system that manages and programs hardware resources for a computer?

Operating System 

300

Tests if at least one condition is true.

OR

300

A set of commands which can be run by calling it by name.

Function 

300

Correct the mistakes in the code below: 

IF (word = "winner ):

if (word == "winner" ):

300

The symbols used to compare values in true/false tests.

Relational Operator 


300

Which information storage is used to store short-term running programs and data in a computer?

RAM ( Random Access Memory) 

400

Used to let the program choose between two true/false options, happens when the if statement is false.

Else

400

Information sent to a function.

Parameter 

400

Correct the mistakes in the following code:

IF (x < y < 6):

if (x < y and y < 6):

400

Tests a second (or third, or fourth...) condition in an if statement.

Elif

400
Apple Air-pods. Input or output device?

Input and output

500

Why do we analyze algorithms?

Predict performance and help choose which algorithm is best to use.

500

The set of rules that guide what is correct code for the compiler to run.

Syntax

500

What are five things algorithms must have?

have an order

have clear instructions

operations that can be done by a computer

produce a result

stop in a finite amount of time

500

Putting one if statement inside another.

Nested ifs

500

Popular computer brands like Apple, Dell and Microsoft started their offices from which place?

Garage - Silicon Valley