2.2 problem solving and programming Flashcards

1
Q

2.2.1 programming techniques

A

jivjnmifjv

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

what are the three programming constructs

A

-sequence
-branching
-iteration

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

sequence

A

Code is executed line-by-line, from top to bottom

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

branching

A

A certain block of code is run if a specific condition is met, using IF
statements

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

iteration

A

A block of code is executed a certain number of times or while a condition is met. Iteration uses FOR, WHILE or REPEAT UNTIL loops

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

local variables

A

Local variables have limited scope which means that they can only be accessed
within the block of code in which they were defined

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

global variables

A

, can be accessed across the whole program

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

two advantages of using local variables over global variables

A

-less memory is used
-self-contained so unaffected by code outside subroutine

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

2.2.2 software development

A

ygbyu

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

what are the common stages of software development life cycles (SDLC’s)

A

analysis, design, development, testing, implementation, evaluation and maintenance

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

what are the different types of testing

A

-alpha testing
-beta testing
-white-box testing
-black-box testing

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

-alpha testing
-beta testing

A

both carried out when software is nearly ready for release
-Alpha testing is carried out in-house by the software development teams within the company. Bugs are pinpointed
and fixed.
-Beta testing is carried out by end-users after alpha testing has been completed. Feedback from users is used to inform the
next stage of development.

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

-white-box testing
-black-box testing

A

-involves testing the algorithms in the code and making sure all parts of those algorithms function as intended. Unlike black-box testing, it also checks the overall efficiency of the code
-checks whether an input produces the expected output. without checking how it has been coded

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

-waterfall lifecycle
-advantages

A

The waterfall lifecycle has a series of stages that each have to be completed before moving to the next one
ADV: straightforward to manage, clear structure, clearly documented

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

what is TELOS

A

a method of analysis used by designers to evaluate the feasibility of a project. It considers technical, economic, legal and operational aspects of the project, as well as scheduling

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

drawbacks of waterfall method

A

If a change needs to be made within a project being developed using the waterfall model,
programmers must revisit all levels between the current stage and the stage at which a
change needs to be made. This makes the model inflexible and so unsuitable to projects
with changing requirements. This also means that users have little input as they are only
involved at the very beginning and end of the waterfall lifecycle, during the analysis and
evaluation stage.

17
Q

agile methodologies

A

This refers to a collection of
methodologies which aim to
improve the flexibility of
software development and
adapt to changes in user
requirements faster

18
Q

-extreme programming
-disadvantages

A

an agile software development framework that aims to produce higher quality software and higher quality of life for the development team. code is written by one person and critiqued by the other so is improved as it is written
DIS: High cost due to two people working on one project, teamwork and good communication is essential, End-user must be present throughout the duration of the project

19
Q

spiral model

A

a software development methodology that combines aspects of both iterative (agile) and sequential (waterfall) processes.
Spiral programming methodologies are suited to large risk-intensive projects with a high budget

20
Q

what types of projects are rapid application development (RAD) programming methodologies suited for

A

projects where high usability is required and user requirements may not be clear from the outset or are continually changing. Suited to projects of a small to medium size with a relatively low budget and short time-frame

21
Q

the three test strategies

A

● Normal -Data within the range of the data type considered as valid.
● Boundary -Data that falls at either of the ends of the valid data range.
● Erroneous -Data that falls outside of the valid data range

22
Q

dry-run

A

another type of test stratergy when programmers
manually work through the code. Take each line at a time and write out the current state of each variable in a trace table.If an unexpected result is produced, the cause of this can be traced and fixed. The downside to dry-runs is that they cannot pick up on run-time/execution errors.