Higher Computing Science (Software and Development)

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/35

flashcard set

Earn XP

Description and Tags

Higher Scottish computing science SQA software and development flashcards.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

36 Terms

1
New cards

Iterative Development Methodology

  • Client only involved at start of project and one at the end

  • Heavy documentation at each stage

  • Strict Deadlines

  • Low adaptability

  • Testing carried out at end of implementation stage

2
New cards

Agile Development Methodology

  • Regular meetings with clients and developers

  • Minimal amount of documentation

  • Short term goals (sprints) to measure progress

  • Flexible when needing to change

  • Testing carried out when programming being done

3
New cards

Functional Requirements

Inputs, Processes and Outputs performed by features and functions of the software

4
New cards

Scope

List of items that project will deliver to the client

5
New cards

Boundaries

Limits that define what is in the project and what is not in the project e.g. Validation for inputs

6
New cards

Wireframe

A skeletal outline of the components of the interface is sketched

7
New cards

Structure Diagrams

Illustrates how a program is divided up into smaller parts in a series of steps of refinements

8
New cards

Data Flow

List the subprograms and to detail which paraments require to be passed in and out of each subprogram

9
New cards

Records

class Country:
	name : str
	capital : str
	population : int

10
New cards

Local Variables

  • Only exists within subprogram where it is declared

  • Only changed in that subprogram and not anywhere else

11
New cards

Global Variable

  • Variable recognised within all subprograms within subprogram

  • Can be changed by any subprogram

  • Aim is to minimise amount of global variables as it has to be traced in all others - lower efficiency

12
New cards

Procedure

Subprogram where it produces and effect e.g. printing something to a screen

13
New cards

Function

Subprogram which returns a single value e.g. a calculation

14
New cards

Formal Parameter

Variable or value that is passed when function is declared

15
New cards

Actual Parameter

Variable or value that is passed when function is called

16
New cards

Substrings

a = "Hello World"
print(a[:5]) #<--- Will print output hello

17
New cards

Ord

Turns characters into numerical numbers

18
New cards

Chr

Turns integer into ASCII character

19
New cards

Files

creating file - open(filename, “x”)

reading file - open(filename, “r”)

writing file - open(filename, “w”)

appending file - open(filename, “a”)

20
New cards

Linear search algorithm

Code searches for a value - inputted by the user - inside of a list

21
New cards

Finding maximum algorithm

Find the maximum value in a list

22
New cards

Finding minimum algorithm

Find the minimum value in a list

23
New cards

Counting occurrence algorithm

Counts how often a value entered from user occurs in a list of items

24
New cards

Types of data tested for

  • Normal data -Test is software gives correct results for commonplace data

  • Test if software can handle data on edge or limit of validation

  • Test if software can handle invalid data to test for software robustness

25
New cards

Syntax error

Mistakes in the grammar of the programming language

26
New cards

Execution error

Mistakes only found when program is executed

27
New cards

Logical error

Does not give correct results even with no execution or syntax errors

28
New cards

Dry run

Going through the program instructions and manually updating all of the variables usually in a table

29
New cards

Trace table

The programmer goes line by line and updates each variable if they have been changed after each instruction has been executed

30
New cards

Break Point

When program reaches breakpoint the execution is suspended so variable values can be assessed

31
New cards

Watch Point

Conditional breakpoint that stops execution if a certain condition is met e.g. Variable meeting certain value

32
New cards

Fitness for purpose

If program meets the user and functional requirements it is suitable for its intended purpose

33
New cards

Efficiency

  • Arrays make a program more efficient than lots of individual variables

  • Nested if statements increases efficiency as rest of code not executed

34
New cards

Usability

Describes how intuitive software is from a users point of view

35
New cards

Maintainability

  • Readable code e.g. Meaningful variable names, comments, indentations and white space

  • By using subprograms

36
New cards

Robustness

Software does not crash easily with unexpected input then it is robust