39.1k views
5 votes
Drag the tiles to the correct boxes to complete the pairs. Match the tools that you can use while solving a problem with their corresponding descriptions.

1. a set of computer instructions written in English
2. an English-like language that programmers use
to write instructions in the planning stage
3. a diagrammatic representation of program control
flow
4. a technique that provides a solution that may not
be the best one

A. pseudocode
B. algorithm
C. flowchart
D. heuristic

User Keynslug
by
4.8k points

2 Answers

0 votes

1. A

2. Algorithm

3 Flowchart

4. Heuristic


Sorry that it's a bit late. Hopefully this is still of some use to you.

User OhleC
by
5.2k points
2 votes

Answer:

1. A

2. B

3. C

4. D

Step-by-step explanation:

A set of computer instructions written in English is a pseudocode.

For example, many times you can do something like this:

declare variable

repeat until....

And instructions like this

The English-like language that programmers use in an algorithim. In this case, the computational code is written.

The diagrammatic representation of program control flow is the flowchart. Before a project begins, some decisions need to be made, and the flowchart is very important at this stage.

The technique that provides a solution that may not be the best one is the heurisitic. In this case, the objective is to find the quickest solution.

So, the associations are:

1. A

2. B

3. C

4. D

User Denizdurmus
by
5.8k points