Chapter 0 Course Information
Chapter 0 Course Information
Course
Information
2022-2023
COMP1117A Computer Programming
Dr. T.W. Chim ([email protected]) & Dr. H.F. Ting ([email protected])
Department of Computer Science, The University of Hong Kong
Basic information
Instructors:
Dr. T.W. Chim ([email protected])
Dr. H.F. Ting ([email protected])
Tutors:
Chan Kwan Yin ([email protected])
Cheng Man Yee Jolly ([email protected])
Jia Ruixing ([email protected])
Lai Chun Kiu Tim ([email protected])
Wen Dacheng ([email protected])
4
Basic information
Textbook
Think Python, How to Think Like a Computer Scientist, 2nd
Edition, by Allen B. Downey.
Available at https://greenteapress.com/wp/think-python-2e/
5
About this course…
This course does not require prior knowledge in
programming.
7
What will you learn?
Outcome 2. [Program
Implementation] Able to
implement solutions using
Python
Outcome 3. [Program
Comprehension] Able to
understand program by others and
participate in larger scale system
implementation
8
Lectures & Tutorials
Lectures: Every Tuesday, 4:30pm – 6:20pm
Tutorials: Every Friday, 5:30pm – 6:20pm
9
CS Laboratories
You are eligible to work in our CS laboratories
Location: Room 312, Haking Wong Building (HW312)
[Open 24 hours every day]
Please obtain your CS account to access our
laboratories.
https://intranet.cs.hku.hk/csintranet/newstudent.jsp
312
10
Assessment
4 Programming assignments (5%, 5%, 10%, 10%)
Your program will be marked by scripts (another marker
program) written by our TAs, your marks will be given based
on the number of test cases that your program can pass.
Basically, you cannot get any credits if your program cannot
be interpreted, or it cannot pass any test cases
Quiz (10%)
Tutorial Exercises (10%)
Written Final Examination (50%)
Policy
Late assignments
We do not accept late submissions.
width = 5 w= 5
height = 10 h= 10
area = width * height a= w * h
print(area) print(a)
END
2022-2023
COMP1117A Computer Programming
Dr. T.W. Chim ([email protected]) & Dr. H.F. Ting ([email protected])
Department of Computer Science, The University of Hong Kong