Difference between revisions of "CS 1331"
(Added in Syllabus and Course Future) |
m (→Topic List) |
||
Line 3: | Line 3: | ||
==== Topic List ==== |
==== Topic List ==== |
||
− | CS 1331 basically focuses on Java Programming semantics, a very brief introduction to Data Structures & Algorithms and also looks into JavaFx basics. The course is slightly fast |
+ | CS 1331 basically focuses on Java Programming semantics, a very brief introduction to Data Structures & Algorithms, and also looks into JavaFx basics. The course is slightly fast-paced, but enough time, resources, and attention is given to students who do not have a background in programming to grasp the concepts. |
# Java Introduction |
# Java Introduction |
||
Line 17: | Line 17: | ||
## Constants |
## Constants |
||
## Literals |
## Literals |
||
− | + | ##* Numeric |
|
− | + | ##* Strings |
|
# Expressions |
# Expressions |
||
** Order of Operations |
** Order of Operations |
||
Line 28: | Line 28: | ||
## scope of variables |
## scope of variables |
||
## visibility modifiers |
## visibility modifiers |
||
− | + | ##* public |
|
− | + | ##* private |
|
− | + | ##* protected |
|
− | + | ##* default (package private) |
|
## getters and setters |
## getters and setters |
||
## Constructors |
## Constructors |
||
− | + | ##* Default Constructors |
|
− | + | ##* Creating Constructors |
|
− | + | ##* Parameterized Constructors |
|
− | + | ##* Constructor Overloading |
|
− | + | ##* Constructor Chaining |
|
− | + | ##* Copy Constructor |
|
#### Shallow Copy |
#### Shallow Copy |
||
#### Deep Copy |
#### Deep Copy |
||
Line 50: | Line 50: | ||
## Command Line Input |
## Command Line Input |
||
# Program Control Flow |
# Program Control Flow |
||
− | + | #* Branching |
|
### Conditionals: if, else if, else ladders |
### Conditionals: if, else if, else ladders |
||
### Logical Operations |
### Logical Operations |
||
Line 56: | Line 56: | ||
### Ternary Operator |
### Ternary Operator |
||
### Switch |
### Switch |
||
− | + | #* Iteration |
|
### for Loop |
### for Loop |
||
### while Loop |
### while Loop |
||
Line 66: | Line 66: | ||
# Enumerations |
# Enumerations |
||
# static |
# static |
||
− | + | #* methods |
|
− | + | #* variables |
|
# Arrays |
# Arrays |
||
## 1 Dimensional |
## 1 Dimensional |
||
Line 93: | Line 93: | ||
## GUI Controls |
## GUI Controls |
||
## ADTs |
## ADTs |
||
− | + | ##* Sets |
|
− | + | ##* Java Collections |
|
− | + | ##* Hashing |
|
− | + | ##* Lists, Linked Lists |
|
− | + | ##* Iterable/ Iterators |
|
# Class Design and Interaction |
# Class Design and Interaction |
||
# Software Design & Development [Optional] |
# Software Design & Development [Optional] |
||
# Testing, Debugging and IDEs |
# Testing, Debugging and IDEs |
||
# JavaDocs & Creating your own packages |
# JavaDocs & Creating your own packages |
||
+ | |||
==== How it fits in the curriculum ==== |
==== How it fits in the curriculum ==== |
||
The course not only touches upon the Java Programming language (3rd most popular according to Stack Overflow), but also introduces many fundamental programming concepts that are universal for any programming language. The course also focuses on Object Oriented Design and JavaFX, which will be emphasized in CS 2340, and also touches ADTs, and Searching & Sorting, which will be built on in CS 1332. |
The course not only touches upon the Java Programming language (3rd most popular according to Stack Overflow), but also introduces many fundamental programming concepts that are universal for any programming language. The course also focuses on Object Oriented Design and JavaFX, which will be emphasized in CS 2340, and also touches ADTs, and Searching & Sorting, which will be built on in CS 1332. |
Revision as of 18:00, 19 May 2021
Overview
[No official Course page]
Topic List
CS 1331 basically focuses on Java Programming semantics, a very brief introduction to Data Structures & Algorithms, and also looks into JavaFx basics. The course is slightly fast-paced, but enough time, resources, and attention is given to students who do not have a background in programming to grasp the concepts.
- Java Introduction
- Object Oriented Programming
- Syntax vs Semantics
- Interpreted vs Compiled
- What is a class
- Comments
- Compilation Process
- Variables & Assignment
- Identifiers
- Variables
- Constants
- Literals
- Numeric
- Strings
- Expressions
- Order of Operations
- Classes and Objects
- Encapsulation
- Instance Methods
- Overriding
- 'this' operator
- scope of variables
- visibility modifiers
- public
- private
- protected
- default (package private)
- getters and setters
- Constructors
- Default Constructors
- Creating Constructors
- Parameterized Constructors
- Constructor Overloading
- Constructor Chaining
- Copy Constructor
- Shallow Copy
- Deep Copy
- The Object Class
- Object Equality
- toString
- hashCode
- Command Line
- Command Line Output
- Command Line Input
- Program Control Flow
- Branching
- Conditionals: if, else if, else ladders
- Logical Operations
- Logical Operator Precedence
- Ternary Operator
- Switch
- Iteration
- for Loop
- while Loop
- Continue and Break
- do-while loop
- Packages and Built In Classes
- Random Class
- Math Operations
- Enumerations
- static
- methods
- variables
- Arrays
- 1 Dimensional
- 2 Dimensional
- Multi Dimensional
- Checkstyle / Coding Conventions
- null reference
- Wrapper Classes
- Abstract Classes and Interfaces
- Heirarchies
- Polymorphism & Dynamic Binding
- Comparable
- Exceptions and Error Handling
- File I/O
- Generics
- ArrayLists
- Asymptotics and Big-O
- Searching and Sorting
- Recursion
- JavaFX
- Concepts, Graphics and Shapes
- Event Driven Programming
- Layout
- Mouse & Key Events
- GUI Controls
- ADTs
- Sets
- Java Collections
- Hashing
- Lists, Linked Lists
- Iterable/ Iterators
- Class Design and Interaction
- Software Design & Development [Optional]
- Testing, Debugging and IDEs
- JavaDocs & Creating your own packages
How it fits in the curriculum
The course not only touches upon the Java Programming language (3rd most popular according to Stack Overflow), but also introduces many fundamental programming concepts that are universal for any programming language. The course also focuses on Object Oriented Design and JavaFX, which will be emphasized in CS 2340, and also touches ADTs, and Searching & Sorting, which will be built on in CS 1332.
Most future CS courses have 1331 as either a direct or indirect prerequisite.