Topic 1 CS314 Course Introduction

Slides:



Advertisements
Similar presentations
CS305j Introduction to Computing Course Introduction 1 Topic 1 Course Introduction Chapman:I didn't expect a kind of Spanish Inquisition. Cardinal Ximinez:
Advertisements

1 CENG 707 Data Structures and Algorithms Nihan Kesim Çiçekli Department of Computer Engineering Middle East Technical University Fall 2010.
CMSC 132: Object-Oriented Programming II
CSCE156: Introduction to Computer Science II Instructor Stephen Scott Website
The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Adrian Ilie COMP 14 Introduction to Programming Adrian Ilie Summer Session II, 2005 MTWRF 9:45-11:15 am.
CMSC 132: Object-Oriented Programming II Nelson Padua-Perez William Pugh Department of Computer Science University of Maryland, College Park.
COMP 14 Introduction to Programming Miguel A. Otaduy Summer Session I, 2004 MTWRF 9:45-11:15 am Sitterson Hall 014.
1 CS312 Course Introduction "Computers are good at following instructions, but not at reading your mind." -Donald Knuth, Tex p. 9 Mike Scott, Gates
CSCE 3110 Data Structures and Algorithm Analysis.
CS307 Fundamentals of Computer Science Course Overview, Materials, and Procedures 1 Topic 1 Course Introduction, Syllabus, and Software Tools Chapman:I.
CS 312: Introduction to Programming Vallath Nandakumar.
Computer Science 102 Data Structures and Algorithms V Fall 2009 Lecture 1: administrative details Professor: Evan Korth New York University 1.
Instructor: Dr. Sahar Shabanah Fall Lectures ST, 9:30 pm-11:00 pm Text book: M. T. Goodrich and R. Tamassia, “Data Structures and Algorithms in.
CS 312: Introduction to Programming Vallath Nandakumar.
1 CS312 Course Introduction "Computers are good at following instructions, but not at reading your mind." -Donald Knuth, Tex p. 9 Mike Scott, Gates
CS324e - Elements of Graphics and Visualization Class Intro
EECE 310 Software Engineering Lecture 0: Course Orientation.
CSC 212 – Data Structures Prof. Matthew Hertz WTC 207D /
1 Topic 1 CS314 Course Introduction Chapman:I didn't expect a kind of Spanish Inquisition. Cardinal Ximinez: NOBODY expects the Spanish Inquisition! Our.
CSCI 51 Introduction to Computer Science Dr. Joshua Stough January 20, 2009.
Data Structures (Second Part) Lecture 1 Bong-Soo Sohn Assistant Professor School of Computer Science and Engineering Chung-Ang University.
Introduction to Data Structures
Computer Science 102 Data Structures and Algorithms CSCI-UA.0102 Fall 2012 Lecture 1: administrative details Professor: Evan Korth New York University.
Course Introduction Andy Wang COP 4530 / CGS 5425 Fall 2003, Section 4.
1 1.Log in to the computer in front of you –Temp account: 231class / 2.Update your in Cascadia's system –If I need to you I'll use.
ICS202 Data Structures King Fahd University of Petroleum & Minerals College of Computer Science & Engineering Information & Computer Science Department.
CS320n – Elements of Visual Programming Course Introduction Mike Scott.
Data Structures and Algorithms in Java AlaaEddin 2012.
Data Structures By Dr. Mehedi Masud ِAssociate Professor, Computer Science Dept. College of Computers and Information Systems Taif University 1.
Introduction to CSCI 1311 Dr. Mark C. Lewis
CSCE 210 Data Structures and Algorithms
電腦圖學 Computer Graphic with Programming
CSC 222: Object-Oriented Programming
Course Overview - Database Systems
Computer Engineering Department Islamic University of Gaza
CSc 020: Programming Concepts and Methodology II
Introduction to Programming
CS312 Course Introduction
CS312 Course Introduction
Midterm Review.
March 27 – Course introductions; Adts; Stacks and Queues
CS 315 Data Structures B. Ravikumar Office: 116 I Darwin Hall Phone:
CS5040: Data Structures and Algorithms
CSC 222: Object-Oriented Programming
EE 312 Course Introduction
Computer Science 102 Data Structures CSCI-UA
September 27 – Course introductions; Adts; Stacks and Queues
CS371M - Mobile Computing Class Intro.
Lecture 1: Welcome to CSE 373
CS329E – Elements of Mobile Computing
CS312 Course Introduction
Welcome to CS 1010! Algorithmic Problem Solving.
Course Overview - Database Systems
Welcome to CS 1010! Algorithmic Problem Solving.
Introduction CSE 373 Data Structures.
Welcome to CS 1301! Principles of Programming I.
Topic 1 CS314 Course Introduction
Accelerated Introduction to Computer Science
Topic 1 CS314 Course Introduction
Review CSE116 2/21/2019 B.Ramamurthy.
Topic 1 CS314 Course Introduction
Administrivia- Introduction
Topic 1 CS314 Course Introduction
C Programming Lecture 1 : Introduction
Review B.Ramamurthy 4/6/2019 BR.
C Programming Lecture 1 : Introduction
Administrivia- Introduction
Final Review B.Ramamurthy 5/8/2019 BR.
CSCE156: Introduction to Computer Science II
Computer Engineering Department Islamic University of Gaza
Presentation transcript:

Topic 1 CS314 Course Introduction Chapman: I didn't expect a kind of Spanish Inquisition. Cardinal Ximinez: NOBODY expects the Spanish Inquisition! Our chief weapon is surprise...surprise and fear...fear and surprise.... Our two weapons are fear and surprise...and ruthless efficiency.... Our three weapons are fear, surprise, and ruthless efficiency...and an almost fanatical devotion to the Pope.... Our four...no... Amongst our weapons.... Amongst our weaponry...are such diverse elements as fear, surprise.... Mike Scott, Gates 6.304 scottm@cs.utexas.edu www.cs.utexas.edu/~scottm/cs314/

Who Am I? Lecturer in CS department since 2000 Undergrad Stanford, MSCS RPI US Navy for 8 years, submarines 2 years Round Rock High School Wife (Kelly) is a nurse. 2 daughters, Olivia and Isabelle CS314 Course Overview

What We Will Do Today Discuss For your TO DO list: course content procedures tools For your TO DO list: request a CS department lab account see syllabus for procedure and links accounts from last term should renew automatically CS314 Course Overview

Prerequisites Formal: CS312 (or CS305J) with a grade of C- or higher Informal: Ability to design and implement programs in Java using the following: structures or records or objects arrays (vectors, lists) top down design (breaking big rocks into little rocks) algorithm and data design create and implement program of at least 200 - 300 loc could you write a program to let 2 people play connect 4? variables and data types expressions, order of operations decision making (if statements) including boolean logic and boolean expressions loops (fixed and variable repetition) procedures or functions parameters (reference and value parameters, local variables, scope, problem generalization) CS314 Course Overview

Data Structures simple definition: "Variables that store other variables" CS314 Course Overview

Data Structures as Tools We will learn a whole toolbox worth of tools CS314 Course Overview

CS314 Topics Introduction Recursive Backtracking Complexity Encapsulation Inheritance Polymorphism Generics Interfaces Iterators Abstract Classes Maps, Sets Linked Lists Recursion Recursive Backtracking Searching, Simple Sorts Stacks Queues Fast Sorting Trees Binary Search Trees Graphs Hash tables Red-Black Trees Heaps Dynamic Programming CS314 Course Overview

Resources Class web site – most course material Schedule – readings Class discussion group – Piazza Labs, software (Java, Eclipse, Canvas) Teaching staff, lab hours CS314 Course Overview

Books and equipment clicker is required books are recommended, not required free alternatives on the web, see schedule Weiss book - data structures Thinking Recursively in Java - recursion CS314 Course Overview Course Overview 9

Clicker Question 1 Which of these best describes you? A. First year at UT and first year college student B. First year at UT, transferring from another college or university. C. In second year at UT. D. In third year at UT E. Other CS314 Course Overview

Graded Course Components clicker participation 30 lectures with clicker, 2 points each: 60 points total Discussion section quizzes 10 quizzes, 10 points each: 10 points total Programming projects 10 projects, 20 points each: 200 points total Midterms, 7/8 in class: 220 points Final Monday 8/17, 7 - 10pm: 450 points 60 + 100 + 200 + 220 + 450 = 1030 clicker, Quizzes, Programming Assignments capped at 330 points. 30 points of “slack” among those 3 components No points added! Grades based on 1000 points, not 1030 Grades posted to Grade Center on Canvas One extra credit assignment at end of term, 10 points CS314 Course Overview

Grades and Performance Final grade determined by final point total and a 900 – 800 – 700 – 600 scale plusses and minuses if within 25 points of cutoff: 875 – 899: B+, 900 – 924: A- CS314 Historical Grades - my sections only 71% C- or higher:   24% A's,  26% B's,  21% C's 14% D or F 15% Q or W (drop) ON CIS WORK LOAD EVALUATED AS HIGH CS314 Course Overview

Assignments Non trivial programming projects Individual – do your own work okay to share tests you write Programs checked automatically with plagiarism detection software Turn in the right thing - correct name, correct format or you will lose points / slip days Slip days 6 for term, max 2 per assignment don’t use frivolously CS314 Course Overview

Succeeding in the Course Randy Pausch, CS Professor at CMU said: "When I got tenure a year early at Virginia, other Assistant Professors would come up to me and say, 'You got tenure early!?!?! What's your secret?!?!?' and I would tell them, 'Call me in my office at 10pm on Friday night and I'll tell you.' " Meaning: Some things don't have an easy solution. Some things simply require a lot of hard work. CS314 Course Overview

Succeeding in the Course Former student: "I really like the boot camp nature of your course." do the readings start on assignments early get help from the teaching staff when you get stuck on an assignment attend lecture and discussion sections participate on the class discussion group do extra problems - http://tinyurl.com/pnzp28f study for tests using the old tests study for tests in groups ask questions and get help when needed CS314 Course Overview

Course Materials and Procedures Software can work in CS department microlab, 1st or 3rd floor of GDC, Dell hall (north wing) login via CS account name and password can work at home if you wish Java. Web page has details under Software. - JDK 7.0 or 8.0 Only using up to and including Java 7.0 features Optional IDE. Recommended IDE is Eclipse, also free CS314 Course Overview

Clicker Question 2 Which computer programming language are you most comfortable with? Java C or C++ C. Python D. PHP E. Other See: http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html and http://lang-index.sourceforge.net/ CS314 Course Overview