CS II

Professor Abdul-Quader

Lesson 0

Welcome!

  • Call me “Athar” or “Professor Abdul-Quader”
  • He / him
  • CS + math undergrad, math PhD
  • Some software experience in industry (primarily Java)

Intros

  • Introduce yourselves (name, pronouns, year at purchase, major, hobbies / interests, anything else you’d like to share)
  • Why are you interested in CS? What are your career goals?
  • What do you think CS is mostly about?
  • Each group: nominate one person to share some of your group’s CS interests, goals, and thoughts on what CS is about.
  • You have 5 minutes!

What is Computer Science?

The study of algorithmic problem solving

  • An algorithm is a precise, step-by-step list of instructions for solving a general problem.
  • We use a programming language to describe an algorithm to a machine.
  • Study algorithms: designing, implementing, analyzing
  • Modern CS research: theory, systems, AI, application development, etc.
    • Ex: algorithms for detecting faces in photos.

Course Expectations

  • Before class: readings (textbook + notes), exercises, come up with questions / problems to go over
  • In class: review, work through exercises.
  • Code every day!
  • Some lessons: hybrid.
    • Asynchronous notes, videos: go through on your own pace.
    • During class-time: small group meetings. Helps me figure out what is holding you back.
    • Everyone should come: go through problems with classmates, get started on assignments, etc.

Recitation

  • New for this semester
  • Our LAs will be hosting recitation sessions.
  • 40-60 minutes: go through a few problems.
  • Timings? TBD
  • Attendance: each week, I will make groups of students that should go.

Textbook / Software

Grading

  • 35%: projects (programming assignments and/or problem sets)
    • Projects 1-3 10% each, Project 4 5%
  • 5%: Participation / exit tickets
  • 10% Demos (short demos / explanations of projects 1 and 3)
  • 10%: Quizzes (3-4 in the semester)
  • 20%: In-class Exams (Best 2 out of 3 exams, cumulative)
  • 20%: Final Exam (TBA)

Projects

  • Get started early!
  • “Project 1 helped me learn to prioritize my time.” - Solomon (2021 LA)
  • 2-3 weeks of work.
    • 25-40 hours of work!
  • “Homework” vs “Projects”:
    • “Homework” assignments can be done in a day, or a weekend.
    • “Projects” are longer term. Take “building blocks” and turn it into something larger.

Course Outline

Roughly three parts to the course:

  1. Basic Java syntax: statements, variables, conditions, loops, Strings, arrays, methods (1 month)
  2. Object oriented programming: classes, interfaces, polymorphism (1.5 months)
  3. Algorithm analysis: big Oh notation, searching and sorting algorithms, intro to data structures (1 month)

Each part builds upon previous parts! Don’t fall behind!

Exercise

Recall: an “algorithm” is a list of steps needed to solve some problem in full generality. Describe, as precisely as possible, the steps needed to find the largest number in a list of numbers. You can describe this algorithm in English or in “pseudocode”.

How is the list represented? What are the simplest individual steps needed?

Work in a small group. Try to write down one algorithm for your group (on paper).

Allowable Instructions

In order to solve simple problems like the “find largest number” problem, a programming language needs:

  • Variables to store data (including “list” type variables and “number” type variables, at least)
  • Comparisons between data
  • Loops to repeat certain steps over and over again.

The syntax for using variables, comparisons, and loops forms a main part of the first month of this course: “basic Java syntax”.

Java

Kinds of languages:

  • Machine Language: usually all in binary. Native to specific hardware. Can be optimized / fast to run. Hard to read / write, may be hard to port.
  • Natural language: ie English. Easy to read/write, but can be ambiguous. Hard for a computer to interpret.
  • High-level programming languages: ie C++, Java, Python. Write code once, take to different machines with minimal effort (recompile the code).

Simple Java Program

// Hello.java
// Any line starting with two slashes is a comment,
// and is not processed by the compiler

public class Hello {
  public static void main(String[] args) {
    System.out.println("Sup?");
  }
}

Structure

  • Top-level: class
    • Class name = File name
  • Next level: main method
  • Inside main: statements
  • Statements end with a semicolon ;
  • As many statements as you need to solve your problem.
  • Kinds of statements?

Git

  • Version Control System.
  • Meaning?
  • Used to:
    • Track changes
    • Collaborate

GitHub

GitHub Classroom

  • GH Classroom will be used for submitting projects
  • Might use it for homework assignments / exit tickets
  • Set up instructions are on BrightSpace.

Homework

  1. Download and install Java / IntelliJ.
  2. Read ThinkJava Chapter 1. Go through all the exercises (using IntelliJ or VSCode).
  3. Get set up on GitHub classroom. Change the code in the starter assignment to print your name.
  4. Skim through Chapter 2: Variables and Operators. In the README file of your GitHub classroom assignment, explain, in your own words, what variables and data types are.

Next class

  • Homework is due Monday.
  • Small group meetings on Monday.
    • Will announce the groups / meeting times on BrightSpace.
// reveal.js plugins