CSE 332 Overview and Structure

Slides:



Advertisements
Similar presentations
CSE 332: C++ overview CSE 332 Overview and Structure CSE 332 emphasizes studio-based active learning –Introductory lecture material followed by hands-on.
Advertisements

Intro to CIT 594
CS112: Course Overview George Mason University. Today’s topics Go over the syllabus Go over resources – Marmoset – Blackboard – Piazza – Textbook Highlight.
CSE 425: Intro to Programming Languages and their Design A Few Key Ideas No particular language is a prerequisite for this course –However you should be.
PLEASE GRAB A SEAT ANYWHERE FOR NOW. Welcome to the CMSC 201 Class!!! Mr. Lupoli ITE 207.
CSE 501N Fall ‘09 00: Introduction 27 August 2009 Nick Leidenfrost.
Object Oriented Programming (OOP) Design Lecture 1 : Course Overview Bong-Soo Sohn Assistant Professor School of Computer Science and Engineering Chung-Ang.
Object Oriented Programming (OOP) Design Lecture 1 : Course Overview Bong-Soo Sohn Associate Professor School of Computer Science and Engineering Chung-Ang.
ENHANCING STUDENT ENGAGEMENT AND UNDERSTANDING THROUGH VIDEO LECTURES AND QUIZZING AMY RUTLEDGE, SPECIAL INSTRUCTOR OF MANAGEMENT INFORMATION SYSTEMS OAKLAND.
Objected Oriented Programming & Design JAVA Shishir Gupta (704) (704)
Welcome to CS 115! Introduction to Programming. Class URL Write this down!
E81 CSE 532S: Advanced Multi-Paradigm Software Development Chris Gill Department of Computer Science and Engineering Washington University in St. Louis.
Principles of Computer Science I Honors Section Note Set 1 CSE 1341 – H 1.
Object Oriented Programming (OOP) Design Lecture 1 : Course Overview Bong-Soo Sohn Associate Professor School of Computer Science and Engineering Chung-Ang.
Object Oriented Programming (OOP) Design Lecture 1 : Course Overview Bong-Soo Sohn Assistant Professor School of Computer Science and Engineering Chung-Ang.
CIS 842: Specification and Verification of Reactive Systems Lecture ADM: Course Administration Copyright , Matt Dwyer, John Hatcliff, Robby. The.
CPSC 315 Programming Studio Spring 2008 John Keyser.
Welcome! Hello and welcome to English Composition 102, Introduction to Literature. I am looking forward to exploring, writing, and discussing literature.
Introduction to CIS Jan-16.
James Tam Introduction To CPSC 233 James Tam Java Object-Orientation Graphical-user interfaces.
Mr. Pina US HISTORY College Prep II. RULES OF BEHAVIOR 2.Always be on time for class. Being late to class is unacceptable! 1.Always be prepared for class!
Spring 2008 Mark Fontenot CSE 1341 – Honors Principles of Computer Science I Note Set 1 1.
MS. NANCY HARRIS LECTURER, DEPARTMENT OF COMPUTER SCIENCE CS 149 – Programming Fundamentals (Accelerated)
Object Oriented Programming (OOP) Design Lecture 1 : Course Overview
CSc 120 Introduction to Computer Programing II
Responsibilities CS 4501 / 6501 Software Testing
IST256 : Applications Programming for Information Systems
CSC207 Fall 2016.
CSc 020: Programming Concepts and Methodology II
Introduction to Programming
CSE 332 Overview and Structure
PROGRAMMING PARADIGMS
Responsibilities CS 4640 Programming Languages for Web Applications
CSC 221: Computer Programming I Fall 2005
EECE 315: Operating Systems
Retention and Student engagement in the flipped classroom
Object Oriented Programming (OOP) Design Lecture 1 : Course Overview
What is Google Classroom?
Welcome to CS 1010! Algorithmic Problem Solving.
Welcome to CS 1340! Computing for scientists.
CSE 332 Overview and Structure
Welcome to CS 1010! Algorithmic Problem Solving.
CS 1302 Programming Principles II
Chapter 10 Thinking in Objects
EECE 310 Software Engineering
Geo 318 – Introduction to GIS Programming
CSCE 315 Programming Studio
CSC2310 Principles of Computer Programming
Modular Course Overview MATH1710, MATH 1720 MATH 1740 and MATH1750
Welcome to CS 1301! Principles of Programming I.
Why Academic Integrity Matters
Object Oriented Practices
CSCE 489- Problem Solving Programming Strategies Spring 2018
PHYS 202 Intro Physics II Catalog description: A continuation of PHYS 201 covering the topics of electricity and magnetism, light, and modern physics.
Software Maintenance and Design
Software Usability Analysis and Design
Accelerated Introduction to Computer Science
Introduction to Comparative Effectiveness Course (HAP 823)
Responsibilities CS 4640 Programming Languages for Web Applications
Tonga Institute of Higher Education IT 141: Information Systems
CS 2530 Intermediate Computing Dr. Schafer
Why Academic Integrity Matters
CSCE 221 Professor Lupoli TAMU CSCE 221 Intro.
BIT 115: Introduction To Programming
Introduction To CPSC 233 James Tam Event driven software
CS114B Introduction to Computer Science II
Tonga Institute of Higher Education IT 141: Information Systems
New Student Orientation
New Student Orientation
Introduction To CPSC 233 James Tam Event driven software
Presentation transcript:

CSE 332 Overview and Structure CSE 332 emphasizes studio-based active learning Introductory lecture material followed by hands-on exercises More time in guided exploration than in passive absorption Key insight: different people learn in different ways Our goal is to make many resources available to you Your goal should be to engage those resources actively Professor’s (and teaching assistant’s) role Emphasis on guidance, coaching, discussion Student’s role Emphasis on exploration, peer interaction, teamwork

C++ Language and Paradigms The course focuses a lot on C++ But also on general programming issues it raises C++ is a multi-paradigm language Procedural programming with functions Object-oriented programming with classes Generic programming with templates, typedefs The course structure lets us explore these in parallel Comparison to C Adds higher-level features, keeps lower-level ones Comparison to Java Many similar ideas, but often with different nuances Gives a less abstract view of the underlying platform

How C++ Has Evolved C is a popular language for developing low-level systems software and applications E.g., operating systems like Linux However, it’s difficult to support type safe software reuse without inheritance, etc. E.g., for middleware frameworks like ACE Stroustrup designed C++ with classes/objects But kept procedural parts very similar to C Later, templates (generics) were added With which Stepanov, et al. developed the STL The C++11 and C++14 standards unified all this E.g., adding lambdas, type inference, move semantics

Approach We’ll Take in CSE 332 A key goal is to expand & refine your mental models For C++ mainly, but also for programming in general Notice and try out new ideas, share them, discuss them Challenge your understanding in as may ways as you can If you don’t remember every detail at first, that’s ok We’ll revisit concepts and techniques from different angles Try to refresh your memory early and often Apply what you learn, early and often, towards mastery We’ll work together to build understanding in stages First as a consumer of an approach (can you use it?) Then understanding it thoroughly (when can you use it?) Then as a contributor to the approach (can you expand it?)

Approach We’ll Take, Continued We’ll talk about how/why the tools you’ll use work E.g., how new/delete operators are used by smart pointers Give insight into special cases when new tools are needed Throughout the course, the point is to learn by doing Mini-lectures and readings are intended as preparation Studio exercises build understanding and expertise Lab assignments ask you to apply what you’ve learned 10 years from now, the languages you use may differ I’ve worked in C++, C, VHDL, Python, and Java But your mastery of procedural/OO/generic ideas will help And, you’ll have a pretty solid grounding in C++ until then

Topic Areas Covered This Semester C++ program basics Variables, types, control statements, development environments C++ functions Parameters, call stack, exceptions C++ memory Addressing, layout, management C++ classes Encapsulation, abstraction, inheritance polymorphism C++ generics Overloading, templates, interface polymorphism , associated types C++ STL Iterators, algorithms, containers, functors

A bit about me This is my 7th year at WashU 5 as a PhD. Student advised by Dr. Cytron Research focused on optimizing the memory system for garbage collected languages Going on 2 as a lecturer I’ve taught CSE 247, 332, 422 This semester I’m teaching 523 as well as 332

Class Details Each class period will start with a short lecture (~30 minutes). The remaining class time will be spent on studio exercises covering the lecture topic. Studios account for your participation grade.

Studio details If you are in class: Record answers in an email as you work As class is ending, send your email to the course email account for full credit Material from all exercises may be covered on an exam, so you are encouraged to complete the studio outside of class but it is not required for credit If you must miss class Complete all required exercises and record your answers Email the completed studio to the course email account. All required exercises must be complete for full credit

Lab details CSE 332 focuses on correctness, but also style Labs graded on correctness as well as programming style Each lab lists the programming guidelines that should be followed Please review the cse 332 programming guidelines before turning in each lab Labs 0, 1, and 2 are individual assignments. You may work in groups of up to three on labs 3 and 4

Academic integrity If you have any doubt at all, ask me! Cheating is the misrepresentation of someone else’s work as your own, or assisting someone else in cheating Providing or receiving answers on exams Accessing unapproved sources of information on an exam Submitting code Written outside of this course in this semester Written by someone else not on your team (or taken from the internet) Allowing another student to copy your solution Do not host your projects in public repos (github) What is ok: Feel free to discuss problems/solutions without sharing code. The code you write should be your own Feel free to use small pieces of code found online, making sure you cite your source. If you have any doubt at all, ask me!

What to do now? Sign up for the course on Piazza Setup the development environment on your laptop We will use the EIT Academic Labs to remotely access Visual Studio 2015 Instructions on Piazza under the “Resources” tab. Once you can access a remote desktop and create a Visual Studio 2015 project you are free to go