What is logical reasoning?
Counting rules in an algorithm
Using steps to solve problems
Using rules to solve problems
What is logical reasoning used for?
To make decisions
To iterate steps
To predict the outcome of an algorithm
Why is logical reasoning used?
To compare the effectiveness of different algorithms to solve a problem
To count steps in an algorithm
To determine where to start in an algorithm
Which symbol means 'greater than'?
>
=
>=
Which symbol means 'greater than or equal to'?
Which symbol means 'equal to'?
Which condition would confirm that someone 17 or over is able to drive a car?
age = 17
age > 17
age >= 17
Which condition would confirm that someone 12 or over is able to watch a 12 rated film?
age >= 12
age = 12
age > 12
Which condition would confirm that only someone 21 and over can drive a mini-bus?
age >= 21
age > 21
age = 22
Which condition would say that only those older than 14 can watch a 15 rated film?
age = 15
age >=14
age > 14