ECE 220
ECE 220 - Computer Systems & Programming
Fall 2024
Title | Rubric | Section | CRN | Type | Hours | Times | Days | Location | Instructor |
---|---|---|---|---|---|---|---|---|---|
Computer Systems & Programming | ECE220 | BD2 | 64602 | DIS | 0 | 0900 - 0950 | F | 2022 Electrical & Computer Eng Bldg | Asher Mai |
Computer Systems & Programming | ECE220 | BD3 | 64603 | DIS | 0 | 1000 - 1050 | F | 2022 Electrical & Computer Eng Bldg | William Shen |
Computer Systems & Programming | ECE220 | BD4 | 64604 | DIS | 0 | 1100 - 1150 | F | 2022 Electrical & Computer Eng Bldg | Jaeyoung Kang |
Computer Systems & Programming | ECE220 | BD5 | 64605 | DIS | 0 | 1200 - 1250 | F | 2022 Electrical & Computer Eng Bldg | Jaeyoung Kang |
Computer Systems & Programming | ECE220 | BD6 | 64606 | DIS | 0 | 1300 - 1350 | F | 2022 Electrical & Computer Eng Bldg | Mike Montano |
Computer Systems & Programming | ECE220 | BD7 | 64607 | DIS | 0 | 1400 - 1450 | F | 2022 Electrical & Computer Eng Bldg | Ananya Kommalapati |
Computer Systems & Programming | ECE220 | BD8 | 64608 | DIS | 0 | 1500 - 1550 | F | 2022 Electrical & Computer Eng Bldg | Ian Song |
Computer Systems & Programming | ECE220 | BD9 | 64610 | DIS | 0 | 1600 - 1650 | F | 2022 Electrical & Computer Eng Bldg | Asher Mai |
Computer Systems & Programming | ECE220 | BL1 | 64600 | LEC | 4 | 1230 - 1350 | T R | 1002 Electrical & Computer Eng Bldg | Yuting Wu Chen |
Computer Systems & Programming | ECE220 | BL2 | 66373 | LEC | 4 | 1100 - 1220 | T R | 2017 Electrical & Computer Eng Bldg | Yih-Chun Hu |
Computer Systems & Programming | ECE220 | BL3 | 66374 | LEC | 4 | 1400 - 1520 | T R | 2017 Electrical & Computer Eng Bldg | Ivan Thomas Abraham |
Computer Systems & Programming | ECE220 | ZJ1 | 69593 | PKG | 4 | - | Steven Lumetta | ||
Computer Systems & Programming | ECE220 | ZJ2 | 71286 | PKG | 4 | - | Steven Lumetta | ||
Computer Systems & Programming | ECE220 | ZJ3 | 76411 | PKG | 4 | - | Steven Lumetta | ||
Computer Systems & Programming | ECE220 | ZJ4 | 76412 | PKG | 4 | - | Steven Lumetta |
See full schedule from Course Explorer
Official Description
Subject Area
- Core Curriculum
Course Director
Detailed Description and Outline
-
Topics Covered
-
Assembly language programming with subroutines and stacks
-
Basic programming concepts in C
-
Functions
-
Arrays
-
Pointers
-
I/O
-
Recursion
-
Simple data structures such as linked lists and trees
-
Basic sorting algorithms
-
Concepts in object-oriented programming
-
Course Goals
This course focuses on C programming, where each new C concept is introduced based on the fundamental concepts described in ECE120. We cover basic programming concepts, functions, arrays, pointers, I/O, recursion, simple data structures, and concepts in object-oriented programming. A bottom-up understanding of computing systems has proven more successful in helping students to understand advanced concepts in computing that follow in the ECE curriculum.
Instructional Objectives
After completing this course, students should
-
Understand how statements written in high-level language such as C are transformed into machine code. Be able to perform such a transformation manually. (1)
-
Understand the idea of scope and storage for variables, and the role of types in high-level languages in providing information to the compiler. (1)
-
Understand the stack abstraction an the notion of a calling convention and its role in supporting the transfer of information between a caller and a subroutine. (1, 7)
-
Understand the concepts of arrays and pointers and their representations in memory. Be able to use arrays and pointers for problem solving. (1)
-
Be able to develop and use data structures for representing and aggregating information (1, 6)
-
Be able to use dynamic memory allocation for storing values and objects in memory. (1, 6)
-
Understand the value of recursion as a problem-solving tool and be able to apply it for solving math and logical problems. (1, 6)
-
Be able to test and debug programs written in C using standard debugging tools and techniques. (1, 4, 6)
-
Be familiar with the concepts of object-oriented programming. (4)