OCR A Level CS 1.2.3: Software Development and Types of Programming

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

1/35

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

36 Terms

1
New cards

Waterfall Methodology

The waterfall model is based on a series of stages which are completed in sequence, from start to finish. It is a linear model in which each stage is separate and is completed and documented before the next stage begins.

Benefits:

Straightforward to manage

Clearly documented

Drawbacks:

Lack of flexibility so unsuitable to projects with changing requirements.

No risk analysis

Limited user involvement after the analysis stage.

Works well for projects in which the requirements are clearly understood. Used for static, low-risk projects which need little user input, such as a piece of general-purpose software

2
New cards

Agile Methodology

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

A working prototype is delivered early on and are built upon and improved in an iterative manner; new prototypes are delivered regularly throughout the course of the development cycle.

Benefits:

Working software is delivered frequently, often in weeks rather than months.

Fast completion and installation of more and more parts of the project lead to customer satisfaction.

Produces high quality code

Flexible to changing requirements

Regular user input

Drawbacks:

Poor documentation

Requires consistent interaction between user and programmer

Changes in requirements after the Analysis stage are difficult to include and may mean repeating several stages in the development process.

Good for small software projects where at least some of the functions need to be implemented quickly. Used for small to medium projects with unclear initial requirements.

3
New cards

Spiral Methodology

The spiral model is built on four key stages with the focus of effectively managing risk-heavy projects: Analysis, Risk Assessment, Testing, Evaluation to inform the next iteration. If the project is found to be too risky at any point, the project is terminated.

Benefits:

Thorough risk-analysis and mitigation

Caters to changing user needs

Produces prototypes throughout: each version of the software builds on the previous version, adding functionality each time.

Drawbacks:

Expensive to hire risk assessors

Lack of focus on code efficiency

High costs due to constant prototyping

The finished product takes longer to develop than other models because of the time consuming process of getting customer feedback and making amendments.

Used for large, risk-intensive projects with a high budget.

4
New cards

Rapid Application Development (RAD) Methodology

RAD is an iterative methodology which uses partially functioning prototypes which are continually built-upon. User requirements are initially gathered using focus groups and used to develop prototypes which is given to the user to trial. User feedback is then used to generate the next, improved prototype and this continues until the prototype matches the requirements of the end-users at which point it becomes the final product.

Benefits:

Caters to changing user requirements

Highly usable finished product

Focus on core features, reducing development time

Drawbacks:

Poorer quality documentation

Fast pace may reduce code quality

As requirements change over the course of the project, additions and changes made to the code may be inefficient.

Used for small to medium, low-budget projects with short time-frames; commonly used where user requirements are incomplete or unclear at the start.

5
New cards

Extreme Programming (XP) Methodology

An agile model in which the development team consists of a pair of programmers alongside a representative end-user. Model is built on ā€˜user storiesā€™: system requirements are specified by the end-user and used when designing the program.

Benefits:

Produces high quality code, as the code is written by one person and critiqued by the other so is improved as it is written.

Constant user involvement means high usability

Quality is not compromised.

Each iteration through the cycle generates what is called a ā€˜working versionā€™ of the program which means it could function as the final product.

Drawbacks:

High cost of two people working on one project

In order for XP to be effective, programmers must communicate effectively: teamwork is essential

End-user may not be able to be present

The iterative nature of development means that it is hard to produce high quality documentation, which is less of a priority.

Used for small to medium projects with unclear initial requirements requiring excellent usability.

6
New cards

Prototype

An ā€˜incompleteā€™ version of the solution/ project that may not have full functionality, but is given to the user for feedback.

7
New cards

Programming Paradigm

A way to conceptualize and structure the implementation of a computer program;Ā  an approach to solve problems.Ā 

Ā 

It is a style/way/approach to programming. Some languages support only one paradigm (e.g. Small Basic supports procedural programming; Haskell supports functional programming), and others support multiple paradigms (e.g. Python).Ā 

8
New cards

Why is there a need for differing paradigms?

For different interpretations/approaches for solutions.Ā 

Different types of problems require different languages, and different solutions.Ā 

9
New cards

Imperative languages

A type of high level programming languages. e.g. Procedural, OOPĀ 

C++, Python, Java, Visual BasicĀ 

Imperative languages focus on describing how a program operates step by step. Imperative languages use statements that change a program's state in the form of sequence, selection, iteration etc.Ā 

They consist of commands for a computer to perform and focus on describing how a program operates.Ā 

10
New cards

Declarative languages

A type of high level programming languages. e.g. SQL, FunctionalĀ 

Declarative languages focus on what the program should accomplish rather than how to accomplish it. Not covered in OCR spec.Ā 

11
New cards

Difference between procedures and functions

Procedures donā€™t always return values, functions do.Ā 

Function: performs a task and returns a value

Procedure: performs a task buts does not return a value

12
New cards

Class

A class forms a blueprint that we can use to create an object, build objects from/ base objects on.

13
New cards

Object

Objects are created from classes: itĀ is a representation of a real-world entity.Ā 

14
New cards

Attribute

An attribute is a data element that represents the quality or state of the class or object: they areĀ defined within a class and can be accessed and modified by both the class and its objects.Ā 

15
New cards

Method

Methods are functions associated withĀ objectsĀ orĀ classesĀ that define the behaviour and actions that objects can perform.Ā There are two main types of methods: a functionĀ (performs a task and returns a value); a procedureĀ (performs a task buts does not return a value).Ā 

16
New cards

Instance

An instance isĀ an individual object;Ā a specific realization of any object.Ā 

17
New cards

Inheritance

In inheritance, the subclass inherits all of the attributes and methods of the parent class.Ā 

The subclass can have its own attributes and methods.Ā 

18
New cards

Encapsulation

Encapsulation refers toĀ the restriction of acesss to certain methods and attributes of a class e.g private and public variables

Could also refer to bundling of data, along with the methods that operate on that data, into a single unit;Ā the process of combining methods and procedures to form an object in object-oriented programming.Ā Ā 

Attributes of an object are encapsulated within a class.Ā 

19
New cards

Polymorphism

Polymorphism isĀ when a subclass alters its inherited methods in two ways: by overloading or overriding;Ā Ā a feature of object-oriented programming languages that allows a specific routine to use variables of different types at different times.Ā 

Overloading is when a method is defined in the subclass that has the same name, but different arguments to a method defined in the superclass.Ā Overriding is when a method is redefined in the subclass with the same name and same arguments.Ā 

Objects can be created from the same class, but can differ individually.Ā 

20
New cards

Assembly Language Instruction Set

knowt flashcard image
21
New cards

Addressing Modes

Immediate: The operand is the actual value.

Direct: The operand refers to the address of the value to be operated on.

Indirect: The operand refers to the location holding the address of the value to be operated on.

Indexed: holds the index of the location holding the address of the value to be operated on.

22
New cards

How is the accumulator used when BRP is executed?

BRP checks if the value currently in the accumulator is positive or zero, and if it is, then jumps to specified location/ BRANCH carried out, and if not, continues going though the instructions.

23
New cards

Opcode

The actual operation to be performed/ part of the instruction that tells the computer what should be done.

24
New cards

Operand

The value of the actual data or the value of the memory location/address.

25
New cards

Software Development Life Cycle Stage 1: Analysis

Stakeholders state what they require from the finished product. This information is used to clearly define the problem and the system requirements.

Requirements may be defined by:

Analysing strengths and weaknesses with current way this problem is being solved

Considering types of data involved including inputs, outputs, stored data and amount of data

26
New cards

Software Development Life Cycle Stage 2: Design

The different aspects of the new system are designed, such as:

Inputs: volume, methods, frequency

Outputs: volume, methods, frequency

Security features: level required, access levels

Hardware set-up: compatibility

User interface: menus, accessibility, navigation

A test plan may also be designed at this stage.

27
New cards

Software Development Life Cycle Stage 3: Development

The design from the previous stage is used to split the project into individual, self-contained modules, which are allocated to teams for programming.

28
New cards

Software Development Life Cycle Stage 4: Testing

The program is tested against the test plan formed in the Design stage. There are various types of testing that can be carried out:

Alpha testing

Beta testing

White box testing

Black box testing

29
New cards

Software Development Life Cycle Stage 5: Implementation

Once the testing stage has been used to make the appropriate changes to the software, it is installed onto the usersā€™ systems.

30
New cards

Software Development Life Cycle Stage 6: Evaluation

After the implementation stage, the effectiveness of the software is evaluated against the system requirements defined at the analysis stage to evaluate its suitability in solving the problem. Different criteria are considered, including robustness, reliability, portability and maintainability.

31
New cards

Software Development Life Cycle Stage 7: Maintenance

Any errors or improvements that could be made to the software are flagged up by the end-users. Programmers will regularly send out software updates to fix any bugs, security issues or make any needed improvements.

32
New cards

Key qualities of a good algorithm

Inputs must be clearly defined: what is valid and what is invalid?

Must always produce a valid output for any defined input

Must be able to deal with invalid inputs

Must always reach a stopping condition

Must be well-documented for reference

Must be well-commented so modifications can easily be made

33
New cards

Alpha testing

Small group of testers, limited internal employees and close friends/ family

Program is in almost-finished state. Testing load balancing and multiple hardware compatibility

34
New cards

Beta testing

Large group of testers- wider community

Testing for maintenance of code in different hardware types

35
New cards

White box testing

Testing the algorithms in the code and ensuring all parts of the algorithm function as intended.

Focuses on identifying and testing all possible paths of execution through a program.

Checks overall efficiency of code.

36
New cards

Black box testing

Testing the inputs and expected outputs; does not look at code.

Code efficiency is not as important.