Computational thinking, algorithms and data representation

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

1/65

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

66 Terms

1
New cards

Computational thinking refers to a way of approaching problems that is particularly useful in computing. It can also be useful for tackling many other kinds of problems

What is computational thinking

2
New cards

Abstraction refers to the process of finding similarities or common aspects between problems and identifying differences and details that don't matter for the task at hand.

What is abstraction

3
New cards

strategies for simplifying a problem or for guiding an investigation

What are heuristics?

4
New cards

A sequence of steps required to solve a problem

What is an algorithm?

5
New cards

Abstraction refers to the process of finding similarities or common aspects between problems, and identifying differences and details that don't matter for the task at hand

What is abstraction?

6
New cards

Decomposition involves breaking down a large task into a set of smaller tasks

What is decomposition?

7
New cards

It can save time, and lead to more elegant solutions

What are two ways in which identifying patterns can help us to solve problems in computing.

8
New cards

Elegance refers to how desirable the algorithm is. Specifically how fast, and accurate it is. For example if an algorithm could produce a correct answer, extremely quickly, 99% of the time, it would be extremely elegant.

In relation to algorithms, what does 'elegance' refer to

9
New cards

Computers are so complex, that it is impossible for the average person to understand every single detail of how they work.

Why is abstraction necessary in computing?

10
New cards

When defining functions

When can we use abstraction when designing programs?

11
New cards

You don't need to know exactly how an argument operates, e.g., print(), as long as you understand how it works

Explain how functions can be used to achieve abstraction

12
New cards

A sequence of steps required to solve a problem

What is an algorithm

13
New cards

Be unambiguous

Consist of a finite number of steps

Have a clear flow of control from the beginning of the algorithm to the end

Algorithms for computers must meet additional criteria than non-computational computer works, what are they?

14
New cards

A mix of programming language and normal/everyday language used to describe instructions in a program less formally than using a programming language alone

What is pseudocode?

15
New cards

To represent the instructions in an algorithm in such a way that they can be executed by a computer

What is the purpose of a computer program in relation to an algorithm

16
New cards

Best case: When there is the least amount of work

Worst case: When there is the most amount of work

What is the difference between worst-case scenarios and best-case scenarios in an algorithm, with respect to the work done?

17
New cards

This is the option that requires the most time and is therefore the most conservative

Why do computer scientists tend to base estimates of work done by an algorithm on the worst-case scenarios?

18
New cards

Algorithmic time complexity is a measure of how long an algorithm would take to complete, given input n

What does algorithmic time complexity mean?

19
New cards

Time

What is the only factor that computer scientists consider when looking at algorithmic complexity?

20
New cards

When the amount of work done is linearly proportional to the input size n

What is meant by 'Linear complexity'

<p>What is meant by 'Linear complexity'</p>
21
New cards

The special notation for describing algorithmic time complexity

What is meant by Big O notation

<p>What is meant by Big O notation</p>
22
New cards

Equivalence classes group algorithms that have an equivalent (more or less) complexity.

What are equivalence classes of algorithms?

23
New cards

A linear search, which runs in 0(n) time

What does 0(n) class represent?

<p>What does 0(n) class represent?</p>
24
New cards

An algorithm that only looks at the first item in a data set

What does 0(1) class represent?

<p>What does 0(1) class represent?</p>
25
New cards

A quadratic algorithmic complexity, one that grows in proportion to the square of the input size. So if n=8 then the output = 64

What does 0(n^2) class represent?

26
New cards

They allow us to see which algorithms are in the same class

They allow us to quantify the difference in complexity

Equivalence classes can prevent computer scientists from wasting time looking for better algorithms that don't exist, as they can often be proven mathematically.

Why are equivalence classes are so important?

27
New cards

Linear search algorithm

Give an example of an algorithm that belongs to the 0(n) class

28
New cards

The highest order of 'n'

In relation to algorithmic complexity, what is considered to be a 'dominant term'.

29
New cards

Problems that no algorithm can solve in a reasonable amount of time, for example the travelling salesman

Explain what is meant by 'intractable' problems

<p>Explain what is meant by 'intractable' problems</p>
30
New cards

A rule of thumb which allows us to produce an approximate, yet usable solution to a problem

What is heuristic, in the non-computer sense?

31
New cards

When one needs a solution to an intractable problem?

When are heuristics useful?

32
New cards

The accuracy of a solution ma not always be known

Some heuristics may make assumptions about the original problems that may not be fair or appropriate.

What are two problems associated with solutions based on heuristic algorithms

33
New cards

When the problem is fully understood, and the consequences of any assumptions can be known and preferably quantified.

Under what circumstances are heuristics best applied?

34
New cards

Analog data, in other terms, data that has more than two values (0 and 1), e.g, the amount of numbers between 0 and 1 (infinite)

What is a continuous signal?

35
New cards

Digital data, in other terms, data that has only two values, 1 or 0 (ON/OFF)

What is a discrete signal?

36
New cards

The selecting of a subset of data, from the a larger data set/population

What does sampling refer to?

37
New cards

Some information is lost, as a digital signal can only form approximations from a continuous signal, for example 4.4 becomes 4

What is the 'trade-off' in sampling?

38
New cards

It is much easier to transport, store and copy than the analog alternative.

What are the advantages of storing information in digital format?

39
New cards

8

How many bits are in a byte?

40
New cards

1111 1111 or 255

What is the largest value that can be stored by a byte in binary and decimal?

41
New cards

256 different characters (2^8)

How many characters total can be stored in a byte?

42
New cards

1024 (1024 is the holy number in units of storage, only bits and bytes are the exception)

How many megabytes are there in a gigabite?

43
New cards

a) (2^40)

b) (2^50)

How many bytes are there in a terabyte (a), and a petabyte (b)

44
New cards

1000 0001 the 1's respectively from left to right are: Most important, and least important

Using an example of a binary, label the most and least important bit

45
New cards

2^0, or 1

What is the first place value in a binary number?

46
New cards

It's place value

What does the position of each bit in a byte represent?

47
New cards

Simplicity, can be carried out quickly by a computer

State two benefits of using binary numbers in computers

48
New cards

NOT

&

AND

What are the names of the two logic circuits used for binary addition?

49
New cards

16

What base is used for Hexadecimal numbers? (0x)

50
New cards

16^0, or 1

What is the least significant digit in hexadecimal

51
New cards

1F

0b1110 to Hex = ?

52
New cards

They provide a way of representing binary values using fewer digits, in hex only two hex digits are needed to represent one byte as 1111 = 15

Give one reason why programmers find Hex useful?

53
New cards

A half-adder circuit uses only 2 inputs, A and B, whereas a full adder, is more complicated and uses 3 inputs, A,B and C

What is the difference between a half-adder and a full adder circuit?

54
New cards

A collection of characters, that are used for a specific purpose, such as a language. E.g., in English we use the roman character set

What is meant by the term character set?

55
New cards

128

How many characters could the original 7-bit ASCII code represent?

56
New cards

256

How many characters can be represented by the 8-bit ASCII

57
New cards

Unicode, or the universal character set, allows for non-roman character sets.

What is Unicode?

58
New cards

t allows us to represent a great variety of characters including those from major languages and many other symbols, such as emoji

What does Unicode allow us to do?

59
New cards

Unicode, as it contains significantly more characters.

Which requires more storage space ASCII or Unicode, and why?

60
New cards

Unicode-Transformation-Format, 8 bit. The 8 means that it uses 8-bit blocks to represent a character.

What does UTF-8 stand for, and what is the relevance of the 8

61
New cards

Meaning all encodings in ASCII are the same in UTF-8

The UTF-8 method is backward compatible with ASCII. What does this mean?

62
New cards

UTF-8

What is the main encoding method used on the Internet?

63
New cards

The character set is encoded with codes of different lengths

UTF-8 is a variable-width encoding method, explain this meaning.

64
New cards

The unique binary code that represents each character

What is meant by a code-point in UTF-8

65
New cards

U+0080

Give an example of how a UTF-8 code point is written

66
New cards

They provide standard ways for computers to represent characters that are readable by other computers.

State why ASCII and Unicode are important