Logical Reasoning and Debugging

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/3

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

4 Terms

1
New cards

Logical reasoning is thinking about the order of steps (the _____) and the selection rules ('if ... then' and 'repeat until...'). You can run through an _____ by following all the steps. You can run through the steps in an algorithm to check if the _____ will _____.

Logical reasoning is thinking about the order of steps (the sequence) and the selection rules ('if ... then' and 'repeat until...'). You can run through an algorithm by following all the steps. You can run through the steps in an algorithm to check if the algorithm will work.

2
New cards

What name is given to the process of thinking about the order of steps and the selection rules?

Logical Reasoning

3
New cards

How to debug a program: It can take a lot of _____ and _____ _____! Computer programmers have _____ which help them find where the _____ are.

How to debug a program: It can take a lot of patience and computational thinking! Computer programmers have programs which help them find where the bugs are.

4
New cards

What are the selection rules?

If… then; Repeat until…