CSE 231 Section *** Teaching Assistant: YOUR NAME

Slides:



Advertisements
Similar presentations
Welcome Parents! Back to School Night 2013 Chemistry II Mrs. Kelsey Ext
Advertisements

Blended classes are an exciting way to learn. Their convenience and scheduling appeals to many students, but they are not for everyone. Students drop-out.
CS 115 TA Orientation Fall More students! Enrollment up to sections + night about 22% CS majors (50 on 8/16)
Next class session: Test 1 on all sections covered from Chapters 1 and 2 Remember: If you haven’t yet passed the Gateway Quiz, you need to review your.
1 HCC Brandon Independent Study Orientation Power Point Instructor: Tiffany Cantrell.
MGS 351 Introduction to Management Information Systems
Welcome Parents! Back to School Night 2012 Chemistry II Mrs. Kelsey Ext
English Language Arts 9 Welcome! 5391.
PHY 1405 Conceptual Physics (CP 1) Spring 2010 Cypress Campus.
Moderated by Bill Shields M.S. Department of Geography-Geology A Discussion of Large Lectures.
Principles of Computer Science I Honors Section Note Set 1 CSE 1341 – H 1.
MGT 3513: INTRODUCTION TO HUMAN RESOURCE MANAGEMENT “Never tell people how to do things. Tell them what to do and they will surprise you with their ingenuity.”
Distance Learning-Math 095 Course Orientation Dr. E. Fitt Bucks County Community College Click to advance the Slides.
MGS 351 Introduction to Management Information Systems Lecture #1.
Course Information and Introductions Intro to Computer Science CS1510 Dr. Sarah Diesburg University of Northern Iowa 1.
Managerial Accounting for Business Professionals ACC 330 UNIT 1 Dr. Doug Letsch I am online waiting for the live session to begin. If you have a general.
WELCOME TO MICRO ECONOMICS AB 224 Discussion of Syllabus and Expectations in the Class.
WELCOME TO MANAGERIAL ECONOMICS MT 445 Discussion of Syllabus and Expectations in the Class.
Course Outline Three Themes for the course: Theme 1: Starting a Research Design and setting it up Theme 2: in-depth lectures on the most common research.
Welcome to 1301! Essentials of College Rhetoric. Contact Info. Instructor: Emily Fox Location: 8 am- 350 or 11 am- 455 Office: English 461 Office hours:
CSc 120 Introduction to Computer Programing II
Introduction to Computers Spring 2017
How to Succeed in Algebra 2 With Mr. Lizarraga San Pedro High
PSYC 2301 Introduction to Psychology
Enrollment for the school year at Rocky is about to begin
Course Information and Introductions
Course Information and Introductions
1 MATH 112 (Thursday) Fall 2014 Instructor:.
Introduction to Programming
WELCOME (Back) …TO THE CAMPUS OF TOMORROW.
Online Course Design: Is the Conversation Over?
Lecture 1 Introductory Microeconomics
Welcome!! Sign by your name on the papers by the door.
Welcome! Mr. Bonin Algebra 2 Room 013.
MIS323 Business Telecommunications
Welcome to MATH FALL 2016.
Send the professor (This is also listed in the syllabus)
7th Grade Mathematics Overview Materials Classroom Policies
Course Information and Introductions
FALL 2017 Dr. Senanu Spring-Pearson
Lecture 0 Course Information
Mrs. Atkinson 6th grade Math and Science
CS 139 – Programming Fundamentals
DMA ~ August 31, 2017~ Aspirations
Modular Course Overview MATH1710, MATH 1720 MATH 1740 and MATH1750
Welcome! Mr. Bonin Geometry-ET Room 013.
Welcome to Physics 1D03.
Welcome to Geometry! Mrs. Blondin Rm
Welcome! EDU 224: Foundations of Teaching and Learning Please complete an information sheet. Have students complete information sheet.
Introduction to Computers Fall 2018
College Smarter Not Harder.
MIS323 Business Telecommunications
Introduction to Computers SPRING 2019
College Smarter Not Harder.
Math 260 Hybrid (5517) Spring 2017 Mandatory Orientation Wednesday, February 8, 2017, 12:10-1:35 pm Instructor: Anne Siswanto Website:
Welcome to CS1046 Approachable Apps
Welcome to Geometry! Mrs. Blondin Rm
Your Course Course code : MKT2231
College Smarter Not Harder.
Professor Brian Tonner
Homework Reading Machine Projects Labs
The only way to learn mathematics is to do mathematics.
How to Get the Most out of Your Syllabus
Welcome to College English 1!
Please grab a seat anywhere for now.
[CONTACT] Biology [GRADING] Course Description
MUSI 207 World Music Orientation.
Welcome to Manufacturing Processes Online Class!
TA/Senior Grader Responsibilities
BIT 142: Intermediate Programming
Presentation transcript:

CSE 231 Section *** Teaching Assistant: YOUR NAME Remember to ask about recently added students about hour of code

As the TA for CSE 231, I will be the main Source of Contact via email: NETID@msu.edu & Piazza INTRODUCE YOURSELF What are everyone’s majors? Grade-level?

Best Resources www.cse.msu.edu/~cse231 Everything you will ever need is most likely here! - Helproom hours/ Syllabus/ Due Dates Please watch the introduction video by Dr. Enbody You must buy the textbook. Read Chapters 0 and 1. A draft is online for those who don't have a text yet. Piazza And, especially, me! Again, my email is NETID@msu.edu

Lab format The course is structured in such a way, that lab exercises can hurt you You can miss up to 2 labs before it starts to affect your grade To receive credit for your lab, you must Complete the Pre-Lab on D2L before the lab section meets (Good Preview of what exams are like!) https://www.d2l.msu.edu. You can’t get credit for the labs unless you do the pre-lab on D2L Show me your running program before the class ends of the current lab assignment That being said, if there are ever any problems, just let me know, we can work out a solution most of the time.

Projects (45%) I grade your projects & handle extensions Extensions: you can get 1 day extension on a project for 50% of the points Projects become more difficult and time consuming as the semester continues Always due on Mondays, & turned in via Mimir If you are ever stuck, a video regarding each project will be attached where the project specifications can be found.

Done Early? I am always here to help, even if you finish early Please stay to start projects do chapter exercises Ask questions regarding the textbook You have me for the full class time, and I want you to get your money’s worth.

Intro to lab 1: Demo in spyder Operators: - using ‘/ ‘ normal division - using // integer division, does division and truncates quotient - using % remainder(modulo) Operators and equal sign: - ‘+=‘ vs ‘-=‘ vs ‘*=‘ - Order of operations Changing types and precision: - int(15.6) vs int(15) - float(5) - bool(1) vs bool(-50) vs bool(0) vs bool(‘’) vs bool(‘No’) - round(3.14159,2)