H446 Section 10 Computational Thinking

5.0(1)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/42

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

43 Terms

1
New cards

Computational Thinking

A problem-solving process that involves breaking down complex problems into manageable parts, using algorithms and abstraction to develop solutions. It emphasizes logical reasoning and the ability to think like a computer scientist.

2
New cards

Abstraction

The process of simplifying complex systems by focusing on the essential features while ignoring the irrelevant details.

3
New cards

Data Abstraction

A method of reducing complexity by providing a simplified view of data, allowing programmers to focus on high-level operations without needing to understand the intricate details of the data structures e.g. through the use of queues, stacks or trees.

4
New cards

Preconditions

Conditions that must be true before a function or algorithm is executed to ensure it operates correctly.

5
New cards

Dynamic Link Library

A collection of reusable code and resources that can be used by multiple programs simultaneously, allowing for efficient memory usage and modular programming.

6
New cards

Caching

A technique that stores copies of frequently accessed data in a temporary storage location, improving data retrieval speed and overall system performance.

7
New cards

Thinking Ahead

The process of anticipating future requirements or outcomes in problem-solving and designing algorithms, often to optimize performance and efficiency.

8
New cards

Thinking Abstractly

The ability to simplify complex problems by focusing on the main ideas and concepts, allowing for more effective problem-solving and algorithm design.

9
New cards

Thinking procedurally

The approach of breaking down tasks into a series of sequential steps or instructions, which can be followed to produce a desired outcome or solve a problem.

10
New cards

Thinking logically

The ability to reason through problems in a structured way, ensuring that conclusions follow from given premises and leading to sound problem-solving and algorithm development.

11
New cards

Thinking concurrently

The ability to understand and manage multiple tasks or processes happening at the same time, often used in programming and systems design to improve efficiency and performance.

12
New cards

Procedural abstraction

The practice of simplifying complex processes by defining a series of steps or functions that can be reused without needing to understand the underlying details, focusing on the 'what' rather than the 'how'.

13
New cards

Procedure interface

14
New cards

Problem decomposition

The process of breaking down a complex problem into smaller, more manageable sub-problems, making it easier to develop solutions and understand the overall structure.

15
New cards

Hierarchy chart

16
New cards

Clarity

The quality of being clear and understandable, which is essential in programming to ensure that code is easy to read, maintain, and debug.

17
New cards

Maintainability

The ease with which a software system can be updated, modified, or enhanced after its initial development, ensuring it remains functional and relevant over time.

18
New cards

block-structured language

A programming language that uses blocks to define the structure and flow of code, allowing for better organization and readability.

19
New cards
20
New cards
21
New cards

Parallel computing

A type of computation in which many calculations or processes are carried out simultaneously, leveraging multiple processors or computers to solve complex problems more efficiently.

22
New cards

Concurrent processing

A method of computing where multiple tasks are executed during overlapping time periods, allowing for efficient use of resources and improved system performance.

23
New cards

Benefits of concurrent processing

Includes improved resource utilization, increased system throughput, and enhanced responsiveness in applications but programs may take longer to complete if not managed properly due to potential contention for resources.

24
New cards

Benefits of parallel processing

Includes faster computation, improved performance for large tasks, and better resource allocation across multiple processors but may require complex programming and synchronization.

25
New cards

Computable problem

A problem for which an algorithm can be constructed to provide a solution in a finite amount of time.

26
New cards

Enumeration

A systematic listing of all possible values or configurations of a problem (exhaustive search), often used in algorithms to ensure completeness. Can be inefficient.

27
New cards
28
New cards

Top down design

A problem-solving approach that breaks down a system into smaller, manageable components, starting from the highest level of abstraction and progressively refining details.

29
New cards

Problem abstraction

The process of simplifying complex systems by focusing on the essential features while ignoring irrelevant details to reduce to a problem that has already been solved.

30
New cards

Graph unfolding

A technique used in computational thinking to represent complex graphs in a simplified manner, making it easier to analyze and understand their structure and properties.

31
New cards

Automation

Creating and putting into action models to solve problems.

32
New cards

Visualisation

The process of representing data or information in a visual context, such as charts or graphs, to make it easier to understand and analyze.

33
New cards

Backtracking

A problem-solving algorithm that incrementally builds candidates for solutions and abandons candidates as soon as it determines that they cannot lead to a valid solution.

34
New cards

Data mining

The practice of examining large datasets to uncover patterns, correlations, or trends that can inform decision-making and predictions.

35
New cards

Big data

Extremely large datasets that require advanced tools and techniques to store, process, and analyze, often to reveal insights and trends.

36
New cards

Intractable problems

Problems for which no efficient solution algorithm exists, making them impractical to solve in a reasonable time frame.

37
New cards

Travelling Salesman problem

A classic optimization problem that seeks the shortest possible route for a salesman to visit each city exactly once and return to the origin city. An example of an intractable problem

38
New cards

Brute-force method

A straightforward approach to solving problems by systematically enumerating all possible solutions and selecting the best one, often used for small datasets.

39
New cards

Time complexity

A computational measure that describes the amount of time an algorithm takes to complete as a function of the length of the input.

40
New cards

Heuristic method

A problem-solving approach that uses practical techniques or shortcuts to produce solutions that may not be optimal but are sufficient for reaching immediate goals. Heuristics are often used in complex problems where finding an exact solution is impractical.

41
New cards

Performance modelling

The process of creating abstract representations of a system's performance metrics to analyze and predict its behavior under various conditions. This technique helps in understanding resource usage and system efficiency.

42
New cards

Pipelining

A technique of splitting tasks into smaller parts and overlapping the processing of each part of the task. Commonly used in the fetch-decode-execute cycle of computer processors to improve instruction throughput and overall performance.

43
New cards