Problem Solving Flashcards

1
Q

What is a variable

A

A variable name is a name given to a container that stores data.
A Variable refers to a value (numeric or
non-numeric) that can change throughout the
course of a pseudocode depending on the
person, place, animal or thing under
consideration.

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

What is a constant?

A

A name given to a container whos value is known beforehand, it is fixed no matter what.

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

Rules for naming variables

A
No spaces
Should not be pluralized 
Cant start with a symbol
Cant begin with a number
should not be too long
Use underscore the bridge two short words
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Types of Cell Addressing/References

A

Relative Addressing
Absolute Addressing
Mixed Addressing

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

What is relative addressing?

A

Relative addressing refers to when a formula with relative cell references is copied to another cell where the references changes based on a relative position of rows and columns. By default all references in excel or relative

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

What is absolute addressing/references

A

Absolute References refers to adding the dollar sign that fixes to a given cell so that it remains unchanged no matter where the formula moves. In other words using the dollar sign in cell references allows you to copy the formula in excel without changes references.

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

What is Mixed addressing/references

A

A mixed cell referencing in excel is a reference where either the column letter or row number is fixed for examples $A1, A$1

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

Examples of constants

A

Number of days in a week= 7
Number of months in a year= 12
Pi= 3.14

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

What is the decomposition of a problem?

A

This means to separate the parts of the problem that is classifies as input, output & processing.

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

IPO chart

A

An IPO chart is used to partition/separate a problem into its components.

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

What does IPO stand for?

A

Input
Output
Processing

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

What is algorithm

A

An algorithm is a set of instructions that if followed in sequence will lead to the solution for the problem

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

What is a pseudo code?

A

A pseudo code algorithm consists of sequence of instructions written in the authors language set out to solve a specific problem.

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

What is the purpose of the COUNTIF function?

A

The purpose of the of the COUNTIF function is to count the number of cells that meet a criterion

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

What are the two arguments?

A

Constant and Variable

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

What is the return value/number?

A

Number represent the cells counted

17
Q

Format of the COUNTIF function

A

=COUNTIF

18
Q

real format of the countif function

A

=COUNTIF(C1:C2, “over $100.00”)

=COUNTIFC1:C3,”Jim”)

19
Q

What is the IF function?

A

A speadsheet program used for making decisions/

20
Q

Data Types

A

Numeric & Non-numeric

21
Q

Integer

A

Positive and Negative whole number

22
Q

String

A

Consists of 2 or more symbols or letters

23
Q

Real number

A

Negative or positive, fraction or decimal whole numbers

24
Q

At which stage in the problem solving
purpose does decomposing takes
place?

A

Stage 2.

25
Q

Define Data Type

A

Data type is a standard classification
of similar data in order to define
which actions can safely be
performed on that data.