-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCourse_outline.qmd
301 lines (156 loc) · 6.32 KB
/
Course_outline.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
---
title: "Course Outline"
author: "Justin Mathew"
date: "15 August, 2024"
format: html
---
## Course Overview
**Credits:** 2
**Hours per Week:** 2
**Course Objectives:**
1. To develop algorithmic thinking and problem-solving skills.
2. To familiarize students with computer systems, software, and language translators.
3. To justify the use of Python for programming and algorithmic design.
4. To introduce Python programming concepts, including data types, conditional statements, and loops.
5. To implement functions, string operations, and real-time applications using Python's data structures.
6. To enable students to apply their knowledge to solve practical problems through a micro project.
## Key Ideas
### Topic 1: Introduction to Algorithmic Thinking
**Lesson Outcomes:**
- Understand the concept of algorithmic thinking.
- Develop basic algorithms for simple problems.
- Recognize the importance of algorithms in problem-solving.
**Content:**
- What is Algorithmic Thinking?
- Importance in problem-solving
- Steps in designing an algorithm
- Example Algorithms:
- Simple tasks (e.g., making a cup of tea)
**Practical Situation:**
- Create algorithms for everyday activities to illustrate the concept.
### Topic 2: Familiarization with Computer Systems and Language Translators
**Lesson Outcomes:**
- Understand basic computer architecture and components.
- Identify different types of software and language translators.
**Content:**
- Introduction to Computer Architecture:
- Block diagram of a computer
- Hardware components (Input, Output devices)
- Memory types
- Software Types:
- High-level vs. Low-level languages
- Assembly languages
- Language Translators:
- Compilers, Interpreters, Assemblers
**Practical Situation:**
- Explore how different programming languages and translators affect the execution of a simple program.
### Topic 3: Justification for Using Python
**Lesson Outcomes:**
- Understand the advantages of Python for algorithmic thinking and programming.
- Compare Python with other programming languages in terms of simplicity and effectiveness.
**Content:**
- Why Python?
- Python’s simplicity and readability
- Comparison with other languages (e.g., C++, Java)
- Python’s role in modern software development and data science
**Practical Situation:**
- Demonstrate a basic Python script and compare it with an equivalent script in another language.
### Topic 4: Developing Algorithms and Flow Charts
**Lesson Outcomes:**
- Develop and represent algorithms using flowcharts.
- Understand properties of good algorithms.
**Content:**
- Introduction to Algorithms:
- Properties of good algorithms
- Flowchart Creation:
- Basic flowchart symbols and conventions
**Practical Situation:**
- Design flowcharts for simple algorithms (e.g., sorting a list of numbers).
### Topic 5: Data Types and Arithmetic Operations in Python
**Lesson Outcomes:**
- Understand and use basic data types and operators in Python.
- Perform arithmetic operations and handle expressions.
**Content:**
- Introduction to Python Programming:
- Data types (int, float, str, etc.)
- Keywords and Variables
- Input and Output statements
- Operators and Arithmetic expressions
- Operator precedence and Evaluation of expressions
**Practical Situation:**
- Write a Python program that performs various arithmetic operations and displays results.
### Topic 6: Conditional Statements in Python
**Lesson Outcomes:**
- Implement and use conditional statements to control the flow of programs.
**Content:**
- Types of Conditional Statements:
- `if`, `if-else`, `elif`, nested `if-else`, `if-elif-else`
- Practical Examples:
- Programs using conditional statements
**Practical Situation:**
- Create a Python program that determines if a number is positive, negative, or zero.
### Topic 7: Loop Structures in Python
**Lesson Outcomes:**
- Use loop structures to repeat actions and iterate over data.
**Content:**
- Introduction to Looping:
- `for`, `while`, nested loops
- `break`, `continue`, `pass` statements
- `range` function
- Sample Programs:
- Implementing various loop constructs
**Practical Situation:**
- Write a Python program that calculates the factorial of a number using loops.
### Topic 8: Functions in Python
**Lesson Outcomes:**
- Define and use functions for modular programming.
- Understand function concepts including parameter passing and return values.
**Content:**
- Concept of Functions:
- Definition, Calling Functions
- Passing Parameters and Return Values
- Type Conversion and Coercion
- Advanced Function Concepts:
- Lambda functions
- Built-in Mathematical functions
- Sample Programs Using Functions
**Practical Situation:**
- Develop a Python program that uses functions to perform mathematical operations.
### Topic 9: String Operations in Python
**Lesson Outcomes:**
- Manipulate and process strings using Python’s string handling functions.
**Content:**
- Introduction to Strings:
- String creation and manipulation
- String Handling Functions:
- Commonly used functions (e.g., `split()`, `join()`, `replace()`)
**Practical Situation:**
- Write a Python program that processes and formats user input strings.
### Topic 10: Real-time/Technical Applications Using Data Structures
**Lesson Outcomes:**
- Apply data structures (lists, tuples, dictionaries) to solve real-world problems.
**Content:**
- Lists, Tuples, Dictionaries:
- Concepts, operations, and functions
- Mutable vs Immutable data structures
- Applications:
- Identifying use cases
- Solving problems using lists, tuples, and dictionaries
**Practical Situation:**
- Create a Python program that manages a list of student records using lists and dictionaries.
### Topic 11: Micro Project
**Lesson Outcomes:**
- Apply Python concepts to develop a project relevant to the student’s field of study.
**Content:**
- Project Development:
- Design and implementation of a simple project
- Application of learned concepts to a practical problem
**Practical Situation:**
- Develop and present a micro project related to the student's branch of study.
## Teaching Methodology
- Hands-on lab exercises
- Step-by-step problem-solving approach
- Regular assessments and feedback
## Evaluation
- Lab exercises and practical implementation
- Micro Project