Computational thinking, problem-solving and programming: Difference between revisions
Mr. MacKenty (talk | contribs) |
Mr. MacKenty (talk | contribs) |
||
(14 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<center> | <center> | ||
<blockquote style="padding: 5px; background-color: #FFF8DC; border: solid thin gray;"> | <blockquote style="padding: 5px; background-color: #FFF8DC; border: solid thin gray;"> | ||
[[File:Exclamation.png]] This is one of '''the most important ideas''' you can | [[File:Exclamation.png]] This is one of '''the most important ideas''' you can remember: | ||
'''Decompose''' a problem into smaller parts, '''model''' a problem with flowcharts. Learn to think '''sequentially''' | '''Decompose''' a problem into smaller parts, '''model''' a problem with flowcharts. Learn to think '''sequentially''' | ||
Line 26: | Line 26: | ||
=== Thinking logically === | === Thinking logically === | ||
* [[ | * [[Conditionals]] | ||
* [[Logical rules]] | * [[Logical rules]] | ||
Line 43: | Line 42: | ||
* [[Abstraction]] | * [[Abstraction]] | ||
=== Connecting computational thinking and program design === | === Connecting computational thinking and program design === | ||
* [[Linear arrays]] | * [[Linear arrays]] | ||
* [[Pseudocode]] | * [[Pseudocode]] | ||
* [[Algorithms]] | * [[Algorithms]] | ||
Line 55: | Line 52: | ||
=== Introduction to programming === | === Introduction to programming === | ||
* [[What is a programming language?]] | * [[What is a programming language?]] | ||
* [[High level languages]] | * [[High level languages]] | ||
Line 64: | Line 59: | ||
* [[Control flow]] | * [[Control flow]] | ||
=== | === Use of programming languages === | ||
* [[Variables]] | * [[Variables]] | ||
* [[Constants]] | * [[Constants]] | ||
* [[Objects]] | * [[Objects]] | ||
* [[Operators]] | * [[Operators]] | ||
* [[Conditionals]] | |||
* [[Algorithms]] | * [[Algorithms]] | ||
* [[Arrays]] | |||
* [[Collections]] | * [[Collections]] | ||
* [[Functions]] | * [[Functions]] | ||
* [[Loops]] | * [[Loops]] | ||
== | == Other important ideas in programming == | ||
* [[Regular expressions]] | |||
* [[Design Patterns]] | |||
* [[Object-Oriented Programming]] | |||
== Standards == | |||
{| style="width: 95%; font-size: 12px;" class="wikitable sortable" | |||
|-style="background-color:#E6F9E6;" | |||
| colspan="2" | '''Computational thinking, problem-solving and programming''' | |||
|- | |||
| Identify the procedure appropriate to solving a problem.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Evaluate whether the order in which activities are undertaken will result in the required outcome.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Explain the role of sub-procedures in solving a problem.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Identify when decision-making is required in a specified situation.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Identify the decisions required for the solution to a specified problem.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Identify the condition associated with a given decision in a specified problem.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Explain the relationship between the decisions and conditions of a system.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Deduce logical rules for real-world situations.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Identify the inputs and outputs required in a solution.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Identify pre-planning in a suggested problem and solution.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Explain the need for pre-conditions when executing an algorithm.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Outline the pre- and post-conditions to a specified problem.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Identify exceptions that need to be considered in a specified problem solution.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Identify the parts of a solution that could be implemented concurrently.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Describe how concurrent processing can be used to solve a problem.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Evaluate the decision to use concurrent processing in solving a problem.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Identify examples of abstraction.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Explain why abstraction is required in the derivation of computational solutions for a specified situation.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Construct an abstraction from a specified situation.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Distinguish between a real-world entity and its abstraction.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Describe the characteristics of standard algorithms on linear arrays.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Outline the standard operations of collections.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Discuss an algorithm to solve a specific problem.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Analyse an algorithm presented as a flow chart.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Analyse an algorithm presented as pseudocode.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Construct pseudocode to represent an algorithm.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Suggest suitable algorithms to solve a specific problem.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Deduce the efficiency of an algorithm in the context of its use.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Determine the number of times a step in an algorithm will be performed for given input data.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| State the fundamental operations of a computer.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Distinguish between fundamental and compound operations of a computer.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Explain the essential features of a computer language.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Explain the need for higher level languages.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Outline the need for a translation process from a higher level language to machine executable code.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Define the terms: variable, constant, operator, object.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Define common operators.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Analyse the use of variables, constants and operators in algorithms.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Construct algorithms using loops, branching.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Describe the characteristics and applications of a collection.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Construct algorithms using the access methods of a collection.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Discuss the need for sub-programmes and collections within programmed solutions.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|- | |||
| Construct algorithms using pre- defined sub-programmes, one- dimensional arrays and/or collections.|| [[Computational thinking, problem-solving and programming | Computational Thinking]] | |||
|-style="background-color:#E6F9E6;" | |||
|} | |||
== References == | == References == |
Latest revision as of 13:48, 11 October 2017
This is one of the most important ideas you can remember:
Decompose a problem into smaller parts, model a problem with flowcharts. Learn to think sequentially
Wing (2006, 2011) defined computational thinking as the thought processes involved in formulating problems and their solutions so that the solutions are represented in a form that can be effectively carried out by a computer. [2]
Computational Thinking (CT) is a process that generalizes a solution to open-ended problems. Open-ended problems encourage full, meaningful answers based on multiple variables, which require using decomposition, data representation, generalization, modeling, and algorithms found in Computational Thinking. Computational Thinking requires the decomposition of the entire decision making process, the variables involved, and all possible solutions, ensuring that the right decision is made based on the corresponding parameters and limitations of the problem. The term computational thinking was first used by Seymour Papert in 1980 and again in 1996. Computational thinking can be used to algorithmically solve complicated problems of scale, and is often used to realize large improvements in efficiency[3]
The big ideas in computational thinking[edit]
Thinking procedurally[edit]
Thinking logically[edit]
Thinking ahead[edit]
Thinking concurrently[edit]
Thinking abstractly[edit]
Connecting computational thinking and program design[edit]
Introduction to programming[edit]
- What is a programming language?
- High level languages
- Compiler
- Low level languages
- Translating high-level code to low-level code
- Control flow
Use of programming languages[edit]
Other important ideas in programming[edit]
Standards[edit]
Computational thinking, problem-solving and programming | |
Identify the procedure appropriate to solving a problem. | Computational Thinking |
Evaluate whether the order in which activities are undertaken will result in the required outcome. | Computational Thinking |
Explain the role of sub-procedures in solving a problem. | Computational Thinking |
Identify when decision-making is required in a specified situation. | Computational Thinking |
Identify the decisions required for the solution to a specified problem. | Computational Thinking |
Identify the condition associated with a given decision in a specified problem. | Computational Thinking |
Explain the relationship between the decisions and conditions of a system. | Computational Thinking |
Deduce logical rules for real-world situations. | Computational Thinking |
Identify the inputs and outputs required in a solution. | Computational Thinking |
Identify pre-planning in a suggested problem and solution. | Computational Thinking |
Explain the need for pre-conditions when executing an algorithm. | Computational Thinking |
Outline the pre- and post-conditions to a specified problem. | Computational Thinking |
Identify exceptions that need to be considered in a specified problem solution. | Computational Thinking |
Identify the parts of a solution that could be implemented concurrently. | Computational Thinking |
Describe how concurrent processing can be used to solve a problem. | Computational Thinking |
Evaluate the decision to use concurrent processing in solving a problem. | Computational Thinking |
Identify examples of abstraction. | Computational Thinking |
Explain why abstraction is required in the derivation of computational solutions for a specified situation. | Computational Thinking |
Construct an abstraction from a specified situation. | Computational Thinking |
Distinguish between a real-world entity and its abstraction. | Computational Thinking |
Describe the characteristics of standard algorithms on linear arrays. | Computational Thinking |
Outline the standard operations of collections. | Computational Thinking |
Discuss an algorithm to solve a specific problem. | Computational Thinking |
Analyse an algorithm presented as a flow chart. | Computational Thinking |
Analyse an algorithm presented as pseudocode. | Computational Thinking |
Construct pseudocode to represent an algorithm. | Computational Thinking |
Suggest suitable algorithms to solve a specific problem. | Computational Thinking |
Deduce the efficiency of an algorithm in the context of its use. | Computational Thinking |
Determine the number of times a step in an algorithm will be performed for given input data. | Computational Thinking |
State the fundamental operations of a computer. | Computational Thinking |
Distinguish between fundamental and compound operations of a computer. | Computational Thinking |
Explain the essential features of a computer language. | Computational Thinking |
Explain the need for higher level languages. | Computational Thinking |
Outline the need for a translation process from a higher level language to machine executable code. | Computational Thinking |
Define the terms: variable, constant, operator, object. | Computational Thinking |
Define common operators. | Computational Thinking |
Analyse the use of variables, constants and operators in algorithms. | Computational Thinking |
Construct algorithms using loops, branching. | Computational Thinking |
Describe the characteristics and applications of a collection. | Computational Thinking |
Construct algorithms using the access methods of a collection. | Computational Thinking |
Discuss the need for sub-programmes and collections within programmed solutions. | Computational Thinking |
Construct algorithms using pre- defined sub-programmes, one- dimensional arrays and/or collections. | Computational Thinking |