80 likes | 203 Views
This document outlines the vital components of the CS1400 course, including course objectives, requirements, and evaluation methods. Students are required to take midterm exams, submit homework labs, and complete quizzes regularly. Important resources such as the FTP site for course materials and instructions for downloading Visual Studio C# 2008 Express are provided. Students must also register their ResponseCard XR unit and adhere to homework submission guidelines. Passing the final exam is crucial to passing the course.
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( )