VG101 RECITATION 1 By TAs. CONTENTS Intro to SAKAI Intro to APG Intro to Online Quiz System Installation of VS2005 and possible resources Some common.

Slides:



Advertisements
Similar presentations
Go to
Advertisements

Version Control System (Sub)Version Control (SVN).
Online Umpire Exam 2012 ASA National Office Ver. 1, 1/24/2012.
Login Screen Step 1: Enter Your Individual Login Id and Password Step 2: Click On Submit Button.
Manager Video Your inside look at how to use People First.
TPA Orientation Teacher Performance Assessments and Livetext.
ONLINE DATA UPLOAD INSTRUCTION
Uploading a Turnitin Assignment Faculty of Humanities and Social Sciences.
INTRODUCTION SERT Samsung Event Reporting Tool. Introduction SERT is the Samsung Event Reporting Tool – SERT is a secure WEB based application that provides.
Overseas Library Catalog – Request Item Overseas Library Catalog Request loaned item.
CS 1400 Using Microsoft Visual Studio 2005 if you don’t have the appropriate appendix.
Foundation Program, Math & Computer Department Using Blackboard A Quick Toor
Welcome to turnitin.com!. What is turnitin.com? An online paper submission website Online grading Paper free! A place to keep a record of your assignments.
Your User Name is the first portion of your Carleton Connect account eg. mroger4 if the was n.ca
CS Tutorial 1 Getting Started with Visual Studio 2012 (Visual Studio 2010 are no longer available on MSDNAA, please choose Visual Studio 2012 which.
Intro to C++. Getting Started with Microsoft Visual Studios Open Microsoft Visual Studios 2010 Click on file Click on New Project Choose Visual C++ on.
Student Training Your Name. The Language Leader Philosophy: Study, Practise, Remember! Grammar Vocabulary Tasks Skills Development: - Reading - Writing.
1 ITI 1120 Lab # 1 An Introduction to the Lab Environment Contributors: G. Arbez, M. Eid, D. Inkpen, A. Williams, D. Amyot.
← Select Exchange Once logged in. ↓ click Join Course Icon.
In the web address box enter Enter your user ID (first and last initial 7 digit ID number) Select Log in.
CSC350: Learning Management Systems COMSATS Institute of Information Technology (Virtual Campus)
1. Visit 2. Click on
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
CollegeBoard SAT Online Course Student Registration.
CIS 1103 (45) Intro to Info Tech Tuesday 1:30 PM – 2:50 PM B207 Ms. Janet McMurrin.
CMMI Training Quiz Instructions via Process-Trak.
VMWare Workstation Installation. Starting Vmware Workstation Go to the start menu and start the VMware Workstation program. *Note: The following instructions.
Registering for MyEnvironmentPlace. Go to Click Books Available.
Google HOW DO I SUBMIT MY ASSIGNMENT?. To join a classroom, your teacher will give you a code.
Ten Reasons to Use KidBlog For Your Reading Class.
MVS Express Electronic Filing IFTA & IRP Instructions - Initial Login Before attempting to login, please ensure that all popup.
CGS 2100Week 2 Accessing Putty & homepagesetup By Kevin Eng.
Turnitin Guide Student Instructions. Creating a Student Turnitin.com Account **If you already have a Turnitin.com account, skip to slide 7, titled “Login.”
Text Name School Name Rep name ISBN of bookstore bundle.
1 / 16 Creating Groups and Users With TaxWise Online © 2006, Universal Tax Systems, Inc. All Rights Reserved. TaxWise Online User Manager Objectives –In.
Lab00-Getting Started with VC Launch VS 2005 Launch Visual Studio 2005 – Start > All Programs > Microsoft Visual Studio 2005 > Microsoft Visual.
Copy of the from the secure website - click on the AccoridaLife.zip link.
ReadnQuiz Tutorial.
1 Getting Started with C++ Part 2 Linux. 2 Getting Started on Linux Now we will look at Linux. See how to copy files between Windows and Linux Compile.
Introduction to Course Material Version 1.1. Objectives Course requirements and objectives - Exams - HW (Labs) - Quizzes How to access to FTP site How.
You must study this PowerPoint, play the Rags to Riches game and take and pass the quiz before continuing with class assignments.
Introduction to Course Material. Objectives Course requirements and objectives - Exams - HW (Labs) - Quizzes How to access to FTP site How to register.
Downloading a Visual C compilers (try it yourself at home) Visual Studio 2012 can be found at:
1 ERP Support Portal ERP Department 25 th November 2015 User Guide.
Tutorial 1 Writing Your First C++ Program CSC1110C Introduction to Computer Programming By Paul Pun Acknowledgement: Special thanks to Dr. Michael Fung.
QRB 501 Week 3 Learning Team Case Studies Complete the following case studies from Ch. 8 & 9 of Business Math: Case Study 8-3, p. 300 Case Study 9-1, p.
How To Check Student Grades Online
Barbara Palmer APD Director
PRACTICE, PRACTICE AND MORE PRACTICE
How to complete a Referral Form via “Student” tab
Google Classroom Kelly Villa.
Marshall Cavendish Education
USA TestPrep Registration and Use
Create an Account Click on the button next to the Create Account Click
Instructions for Creating a Student TurnItIn.com Account
How to Set Secret Question ?.
What you will need to Register
СИСТЕМТ ТЭГШИТГЭЛ.
Creating Your First C Program Using Visual Studio 2010
Vendor Portal Registration Procedures
Creating Your First C Program Using Visual Studio 2010
Registering for MyGeosciencePlace
Instructions for Creating a Student TurnItIn.com Account
Activity: Career Cruising
VENDOR STOCK MASS UPLOAD MANUAL Enter the login id and password
Config Client Access (AS400)
HOW TO PLACE MY ORDER ?.
Security - Forms Authentication
ADMINISTRATION A guide to setup and manage your innovation platform…
Presentation transcript:

VG101 RECITATION 1 By TAs

CONTENTS Intro to SAKAI Intro to APG Intro to Online Quiz System Installation of VS2005 and possible resources Some common mistakes Q&A

INTRO TO SAKAI user name (EID) and password (by default, it is your student ID) Important folders: Announcements, Resources, Assignments Check SAKAI at least once a day

INTRO TO APG user name (EID) and password (by default, it is , so change you password ASAP) Using Tags write console.printLine(“ ”, answer, “ ”); instead of console.printLine(answer);

INTRO TO APG 1. Use EID and password to login 2. Select an assignment. 3. Click its title to go to assignment description. 4. Paste code there and submit.

INSTALLATION OF VS2005 Make sure that you have a right version click Help -> about Microsoft Visual Studio Use the CS106B/X template to create a new project click File -> New -> Project For detailed steps, look up your lab meterials

SOME COMMON MISTAKES include Vg101class.h include int main (void) { double x, y, z x = console.readDouble("Please enter a number: "); y = console.readDouble(“/nPlease enter a second number: "); z = x^2; z =+ y * y; console.printLine(“/nThe answer is ", sqrt(z)); { How many bugs can you find? 1~10

SOME COMMON MISTAKES #include "Vg101class.h" #include int main (void) { double x, y, z; ConsoleT console; x = console.readDouble("Please enter a number: "); y = console.readDouble("\nPlease enter a second number: "); z = x * x; z += y * y; console.printLine("\nThe answer is ", sqrt(z)); return 0; } Missing # Missing ; Missing declaration Missing “” /n should be \n x^2 should be x * x =+ should be += Missing return 0; { should be } 9 bugs !!

SOME COMMON MISTAKES 5 % 2 = ? 5 / 2 = ? -5 % 2 = ? -5 / 2 =? -5 % -2 = ? -5 / -2 = ? Write your own program to find them Remember: (x/y) * y + (x%y) = x The answers are: 1, 2, -1, -2, -1, 2