Information Technology Flashcards

1
Q

What is an algorithm?

A

An algorithm is a precise number of steps which is followed correctly will produce the solution to any problem whether it is simple or complex

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is used to present an algorithm?

A

A flow chart or pseudocode.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the five steps to solving a problem?

A

Problem solving
Analyze the problem
Brainstorm possible solution
Select the best possible solution
Implement the solution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is implementing?

A

To implement that is when you are testing the best solution that you choose.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is executing?

A

Executing is the actual process of doing it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a pseudocode?

A

A pseudocode is an English like fake code that mimics the real programming code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the key words used to represent the different parts of a pseudocode?

A

Input
Processing
Output
Storage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What two words should pseudocode algorithms begin with and end with?

A

“Start” and “Stop”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Key words used in pseudocoding.

A

Declaration
Read/Input
Write/Output
Start/Begin
Stop/End

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Declaration

A

Used to define variables used in the program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Read/Input

A

Used to accept input

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Write/Output

A

Used to output results to the user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Start/Begin

A

Used indicate the beginning of a program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Stop/End

A

Used to indicate the end of a program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is syntax?

A

Syntax is the set of rules that define what the various combinations of symbols mean.This tells the computer how to read the code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is Input?

A

All the things needed

17
Q

What is processing?

A

How you will use all that is needed to arrive at the desired results

18
Q

What is output?

A

What you expect to get at the end. That is the result

19
Q

What is an IPO chart used for?

A

IPO chart indicates the information you will need to begin the problem-solving process (Input)
It also outlines the steps you will need to take to arrive at the required solution (Processing)
The IPO chart identifies the goal rules or objectives to be achieved in the solution (Output)