Analytics Programming Flashcards

WGU course D598

1
Q

What is the primary purpose of using flowcharts to represent solutions to programming problems?

A

To visually represent the logical flow of the program.

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

When creating pseudocode for a programming task, what should be the focus?

A

Overall logic and structure of the program

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

Which are the essential elements represented in flowcharts?

A

Input/output, process/action, decision, start/end

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

What are the seven best practices for a flowchart?

A
  1. Start each task description with action verbs
  2. Be concise
  3. Add hyperlinks
  4. Organize from left to right and top to bottom
  5. Use the same swimlanes from page to page
  6. Adjust for readability
  7. Maintain open space
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Flowchart terminal

A

The terminal is an oval that indicates the beginning and end of a program. It usually contains the words Start or End.

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

Flowchart flowline

A

The flowline is a line from one symbol pointing towards another to show the process’s order of operation. This displays the flow of execution in a program.

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

Flowchart Input/Output

A

Input/output is represented by a rhomboid and indicates the input or output of data. This is similar to setting a value to a variable.

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

Flowchart Process

A

A process, represented by a rectangle, is an operation that manipulates data. Think of this as changing the value of a number-based variable using an operator such as +.

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

Flowchart Decision

A

Decisions are represented by a rhombus and show a conditional operation that will determine which path a program should take. This is similar to conditional statements which control the flow of execution in a program.

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

Algorithm

A

a series of steps for solving a problem or carrying out a task

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

Structural decomposition i

A

a process that identifies a hierarchy of building-block units for a program concept. At the lowest levels of the hierarchy are modules, The higher-level blocks,are the bigger picture or goal the program will achieve.

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

Tips for structural decomposition

A

Use a top-down approach.
Label nodes with nouns and adjectives rather than verbs.
Don’t worry about sequencing.

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

What does it mean to minimize dependencies in decomposition mean?

A

Ensuring that changing the instructions in one module or object do not require changes to other modules or objects as much as possible.

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

What does maximizing cohesion in decomposition mean?

A

Each object or module contains attributes, methods, or instructions that perform a single logical task or represent a single entity.

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

pattern identification

A

The process of finding similarities in procedures and tasks

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

What are businesses with the attributes name, hours of operations, and menu an example of?

A

Classification patterns

17
Q

What is abstraction in code?

A

hides details, simplifies complexity, substitutes a generalization for something specific, and allows an algorithm to work for multiple inputs

18
Q

Semantics

A

the meaning and validity of program statements.

19
Q

Syntax

A

the order of words and the punctuation you are required to use when composing statements.

20
Q

What do compilers and interpreters do>

A

convert your code into a program that a computer can execute.

21
Q

What do virtual machines do?

A

Translates bytecode into machine code just prior to its execution

22
Q

What is an interpreter?

A

a software utility that begins with the first statement in your program, preprocesses it into a binary instruction, and then executes it.

23
Q

In what cases should numbers be treated as string literals?

A

In cases of Telephone numbers, PINs, house numbers, Social Security numbers, area codes, and zip codes

24
Q

What is a constant?

A

a named memory location holding data that is not changed by the statements in a program.