March Mock

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

1/91

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

92 Terms

1
New cards

What is representational abstraction?

A technique in which excessive details are removed to arrive at a representation of a problem that consists of only the key features

2
New cards

What is abstraction by generalisation?

The grouping together of similarities within a problem to identify what kind of problem it is

3
New cards

What is data abstraction?

When details about how data is being stored are hidden

4
New cards

What kind of problems make use of multiple levels of abstraction?

Large complex problems

5
New cards

How does abstraction allow non-experts to make use of a system?

Hides complex and irrelevant information in abstract models

6
New cards

Advantages of using abstraction in software development?

Easier for to focus on core elements

Reduces the time needed to be spent on the project

Prevents program from getting unnecessarily large

7
New cards

Applications of layers of abstraction

Networking

Programming languages

8
New cards

Advantages of using abstraction in programming languages?

Easier to remember syntax in high level languages

Coding becomes accessible to beginners

9
New cards

How does object oriented programming use abstraction?

Objects are an abstraction for real-world entities

Attributes are an abstraction for the characteristics of an object

Methods are ab abstraction for the actions a real-world object is able to perform

10
New cards

What is the difference between abstraction and reality?

Abstraction is a simplified representation of reality

11
New cards

What is a decision?

A decision is a result reached after consideration

12
New cards

When are decisions made?

A decision is made whenever a choice is needed

13
New cards

What is the shape given to a decision icon in a flow chart?

A diamond

14
New cards

In a flowchart how many options can be chosen from a decision?

2 different options

15
New cards

How are effective decisions made?

By evaluating the importance of different factors and selecting options which satisfy the needs of the task the most appropriately

16
New cards

Does the result of a decision affect the flow of a program?

The program will follow a different route depending on the decision made by the user

17
New cards

What are the programming constructs?

Sequence

Branching

Iteration

18
New cards

What categories of loop is iteration split up into?

Count-controlled

Condition-controlled

19
New cards

How does branching work?

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

20
New cards

What is recursion?

A programming construct in which a sub routine calls itself during its execution until the base condition is met

21
New cards

What is the base case in recursion?

A condition that must be met in order for the recursion to end

22
New cards

Advantages of recursion?

Can be represented in fewer lines of code

Easier to express some functions recursively than using iteration

23
New cards

Disadvantages of recursion?

Inefficient use of memory

Danger of stack overflow

Difficult to trace

24
New cards

What information is stored on the call stack?

Parameters

Return addresses

Local variables

25
New cards

What is a scope?

The section of the program in which a variable is accessible

26
New cards

Advantages of using local variables over global variables?

Less memory is used

Self-contained so unaffected by code outside of the sub routine

Take precedence over global variables with the same name

27
New cards

What is top down design?

A technique used to modularise programs in which the problem is continually broken down into sub problems until each can be represented as an individual, self-contained module which performs a certain task

28
New cards

Advantages of modular design?

Makes a problem easier to understand and approach

Simpler to divide tasks between a team

Easier to manage project

Self-contained modules simplify testing and maintenance

Greater reusability

29
New cards

Another name for top down design?

Stepwise refinement

30
New cards

What is the difference between procedures and functions?

Functions must always return a single value while a procedure does not always have to return a value

31
New cards

What does it mean to pass a parameter to a subroutine by reference?

The address in memory of the parameter is passed to the subroutine so it’s value outside of the subroutine will be updated

32
New cards

Features of IDEs?

Stepping

Variable watch

Breakpoint

Source code editor

Debugging tools

33
New cards

What does IDE stand for?

Integrated Development Environment

34
New cards

What is encapsulation OOP?

When attributes are declared as private so can only be accessed and edited by public methods

35
New cards

Purpose of encapsulation OOP?

Program complexity is reduced by protecting data from being accidentally edited by other parts of the program

36
New cards

What is meant by a computable problem?

A problem that can be solved using an algorithm

37
New cards

What are the limiting factors to computable problems?

Processing power

Processor speed

Computer memory

Time

38
New cards

What are the factors to be considered during the problem definition phase?

Strengths and weaknesses of current solution

Volume/ type/ frequency/ nature of inputs outputs and stored data

39
New cards

What is problem decomposition?

When problems are continually broken down until each subproblem can be represented as a subroutine

40
New cards

Purposes of problem decomposition?

Save time coding

Simplify project management

Simplify testing and maintenance

Faster project delivery

Develop sections in parallel

41
New cards

How does the divide and conquer technique work?

The problem size is halved with every iteration. Each individual subproblem is then solved recursively. The solutions to the subproblems are then recombined to form the final solution to the problem

42
New cards

What are the applications of divide and conquer?

Merge sort

Binary search

Quick sort

43
New cards

What is representational abstraction?

A computational technique in which excessive details are removed to simplify a problem

44
New cards

What are examples of problem solving techniques?

Abstraction

Divide and conquer

Visualisation

Pipelining

Data mining

45
New cards

How does backtracking work?

By methodically visiting each path and building a solution based on the paths found to be correct. If a path is found to be invalid at any point it backtracks to the previous stage and visits an alternate path

46
New cards

What are the advantages of using performance?

Safe

Relatively inexpensive

Less time-consuming

47
New cards

What is an algorithm?

A series of steps that complete a task

48
New cards

What is a linear search algorithm?

An algorithm which traverses through every item one at a time until it finds the item it’s searching for.

49
New cards

What is the binary search algorithm?

A divide and conquer algorithm which means it splits the list into smaller lists until it finds the item it’s searching for since the size of the list is halved every time

50
New cards

What is the bubble sort algorithm?

It passes through the list evaluating pairs of items and ensuring the larger value is above the smaller value

51
New cards

What are programming paradigms?

Different approaches to using a programming language to solve a problem

52
New cards

What are the categories for programming paradigms?

Imperative and delcarative

53
New cards

What are the advantages of procedural programming?

Can be applied to a wide range of problems

Relatively easy to write and interpret

54
New cards

What are the uses of declarative programming?

Expert systems

Artificial Intelligence

55
New cards

How does assembly language differ from machine code?

Assembly language uses mnemonics rather than binary. One line in assembly language is equal to one line in machine code

56
New cards

What is a class?

A template for an object that defines the state and behaviour of an object. An object is an instance of a class.

57
New cards

What are the disadvantages of OOP?

Requires a different style of thinking which can be difficult for programmers accustomed to other paradigms to pick up.

OOP may not be suited to all types of problems

Generally unsuitable for smaller problems

58
New cards

In hashing what is a collision?

When two key maps have the same hash

59
New cards

What is hashing?

The process of turning an input into a fixed size value

60
New cards

What is a hash table?

A data structure that uses hashing to store information with constant lookup time

61
New cards

What are the properties that a hashing algorithm should have?

Low chance of collision

Quick to calculate

Output smaller than input

62
New cards

What data type should be used for storing a phone number?

String

63
New cards

What is a string?

A data type that stores a collection of characters

64
New cards

What is boolean?

A data type that stores just True and False

65
New cards

What is an array?

An ordered, finite set of elements of a single type

66
New cards

What is a record made up of?

Fields

67
New cards

What is a list?

A data structure consisting of a number of items in which the items can occur more than once

68
New cards

What are the main differences between arrays and lists?

Lists can store data non-contiguously whereas arrays store data in order

Lists can store data of more than one data type

69
New cards

What is a tuple?

An immutable ordered set of values of any type

70
New cards

What is the difference between a tuple and an array?

Tuples are initialised using regular brackets instead of square brackets

71
New cards

What is a linked list?

A dynamic data structure used to hold an ordered set of items which are not stored in a contiguous location

72
New cards

What does each node in a linked list contain?

It contains a data field, which stores the actual data, and another address field called a pointer, which contains the address of the next item in the list

73
New cards

What is a graph?

A graph is a data structure consisting of a set of vertices connected by edges

74
New cards

What is a directed graph?

A graph in which the edges can only be traversed in one direction

75
New cards

What is a weighted graph?

A graph in which the edges have a cost to traverse

76
New cards

What data types can a computer understand as a graph?

Adjacency matrix

Adjacency list

77
New cards

What are the advantages of using an adjacency matrix?

Convenient to work with

Easy to add new nodes

78
New cards

What are the advantages of using an adjacency matrix?

Space efficient for large sparse networks

79
New cards

What is a stack?

A last in first out data structure where items can only be removed from and added to the top of the list

80
New cards

Examples of where stacks may be used?

Back button in a web page

Undo buttons

81
New cards

What is a queue?

A first in first out data structure where items are added to the end of the queue and removed from the front of the queue

82
New cards

What is a tree?

A data structure which has a root node and child nodes connected with branches

83
New cards

What is a binary tree?

A type of tree in which each node has a maximum of two children

84
New cards

What is the purpose of a binary tree?

It is used to search for values quickly

85
New cards

What properties does a good hashing algorithm have?

A good hashing algorithm must be fast and have a low chance of collision

86
New cards

What is De Morgan’s law?

not(A and B) = not A or not B

87
New cards

What is the purpose of a D type flip flop?

To store the value of a single bit

88
New cards

When is the stored value in a D-type flip flop updated?

On the rising edge of the clock signal

89
New cards

What is the law of distribution?

The law of distribution states that for all numbers a, b, and c, a (b + c) = (a b) + (a * c)

90
New cards

What is the law of association?

The addition or removal of brackets and reordering of literals in a boolean expression

91
New cards

What is the law of commutation?

It shows that the order of literals around an operator does not matter

92
New cards

What is the law of double negation?

If you negate a literal twice you can remove both negations and retain the same truth value