80 likes | 197 Views
Introduction to Course Material Version 1.1. Objectives. Course requirements and objectives - Exams - HW (Labs) - Quizzes How to access to FTP site How to register ResponseCard XR unit How to enter data in ResponseCard XR unit
E N D
Introduction to Course Material Version 1.1
Objectives Course requirements and objectives - Exams - HW (Labs) - Quizzes How to access to FTP site How to register ResponseCard XR unit How to enter data in ResponseCard XR unit How to download and install Visual Studio C# 2008 Express How to create a C# program
Course Requirements • 2 Midterm Exams if you take both drop lowest • Final Exam must pass with 60% + to pass course • Homework Programs (Labs) • 1 week after assigned date • 1 week grace period • Must turn in all Labs • Quiz at the start of every class
Course Materials - FTP • ftp://cseftp.tc.uvu.edu • cns/fairclde/Spring 2010/CS1400 • Syllabus • Slides • Example Code • Exams • Labs • Etc. • FileZilla - http://filezilla-project.org/ • Button “Download FileZilla Client”
ResponseCard XR Unit • Purchase at UVU Bookstore $48.00 • Register – http://student.turningtechnologies.com • Program – First Name, Last Name, UVU ID, fairclde@uvu.edu • Homework Submission • 1400dennis@gmail.com • Take quiz
Visual Studio C# 2008 Express • Download – www.msdn.com • Follow Instructions
Creating a C# Program • File • New Project • C# • Console Application
C# Program Code using System; void Main() { Console.WriteLine(“Hello world”); Console.ReadLine( ); }//End Main( )