FLOWCHARTS PROBLEM Flashcards

1
Q

What type of flowchart depicts a simple process or a sequence of steps in a linear manner, showing actions, decisions, inputs, and outputs?

A

Basic Flowcharts

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

What type of flowchart visually represent the steps, decisions, and flow of a process or workflow to help analyze and improve it?

A

Process Flowchart

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

What type of flowchart organizes processes into lanes to show different actors or systems responsible for each step?

A

Swimlane Flowchart

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

What type of flowchart focuses on how data moves through a system, showing the flow of data between processes, data stores, and external entities?

A

Data Flowchart

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

What type of flowchart is used to visualize the flow of tasks or activities in a workflow, focusing on steps, decisions, and outcomes in a specific process?

A

Workflow Flowchart

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

What are symbolic names associated with data values that acts as containers to store and modify information throughout a program?

A

Variables

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

Represent whole numbers, both positive and negative

A

Integer (int)

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

Represents decimal numbers, allowing for fractional values

A

Float

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

Represents sequences of characters, used for text data

A

String (str)

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

Represent truth values, either true or false

A

Boolean (bool)

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

Variables allow programmers to write code that can handle different inputs and scenarios

A

Flexibility

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

Well-named variables make code easier to read, understand, and maintain

A

Readability

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

Variables help manage data in a structured way, ensuring efficient use of memory resources

A

Memory Management

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

What are arithmetic operators and their functions?

A

Addition, Subtraction, Multiplication, Division, Modulus

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

What are relational operators and their values.

A

Equal, Not equal to, Greater than, Less than ) Less than or equal to

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

What are logical operators?

A

AND, OR, NOT

17
Q

What are assignment operators?

A

Simple assignment, Add and assign, Subtract and assign

18
Q

It enables the manipulation of data stored in variables, allowing for calculations, comparison, and logical decision-making.

A

Data Manipulation

19
Q

It is essential for controlling the flow of programs, enabling branching and looping based on conditions

A

Control Flow

20
Q

Using operators properly can result in more concise and efficient code, reducing to perform tasks

A

Efficiency