CS 170 Java Programming 1. Welcome to CS 170. All about CS 170 The CS 170 Online Materials Java Mechanics: Your First Program

Size: px
Start display at page:

Download "CS 170 Java Programming 1. Welcome to CS 170. All about CS 170 The CS 170 Online Materials Java Mechanics: Your First Program"

Transcription

1 CS 170 Java Programming 1 Welcome to CS 170 All about CS 170 The CS 170 Online Materials Java Mechanics: Your First Program

2 What s the Plan? Topic I: What s CS 170 All About? Contact information Topics, Goals and Objectives Exams and Assignments Textbook and software Rules for the course Topic 2: the online classroom, lessons and assignments Topic 3: Java Mechanics Learn to use the DrJava Development Environment Enter, modify and run three kinds of Java programs

3 Contact Information The syllabus is always available from my Web site: Here s how you can contact me: Clark Computing Center, Office F Office hours: M: 1:15-2:15, T: 3:15-5:15, W: [email protected], [email protected] Phone: (714) ext 21173

4 What s CS 170 About? First programming class for Computer Science majors Intended as a transfer class to 4-year college SMART-ICS agreement with UCI, CSU Fullerton Meets computing requirement at some universities Principles of programming, using Java as the language Learn to write your own computer programs This semester we'll also be processing media A lot of work, but a lot of fun if you get into it

5 Are You Ready? While there are no subject prerequisites for this course, I assume that you are computer literate Install and run programs Move around your computer s file system (copy, delete) Use a zip/unzip program to work with archives Create and save plain text files Use the Web and (upload, download, etc.) No math pre-req, but should be ready for college algebra

6 Course Goals If you successfully complete this class you'll: Understand and explain principles of OO Programming Prepare you for other modern languages Use different kinds of program development tools Write applications and applets using the fundamental packages in the Java platform Won't study all the classes; try to master a few Learn how to use the Java documentation so it can teach you about the rest of the classes in the library

7 How Can You Succeed in CS 170? Don't need to be a "brain" but must put in quality time Like a marathon or getting in shape Anyone can do it, but you have to keep at it 2.5 hours on-campus and about 12 hours outside Includes 2.5 hours online lessons, 8 hours practice Cramming won't help you at all; highly sequential material Practice, practice, practice Not high-school; I won't nag you

8 How Will You Be Graded in CS 170? 2 Exams: 1 midterm (15%.), 1 final (25%) Multiple-choice: 1-2 hrs closed book, online 10 Reading Quizzes: (7.5%) online, open book 10 Programming Quizzes: (35%) in-class, closed book Hands-on proficiency demonstrations, some re-do Weekly "labs" or "In-Class" exercises (7%) Weekly Homework: practice for exams (15%) 1045 points, grade on 1000 (45 extra for emergencies) 87.5%, 75%, 62.5%, 50% - no other curving

9 Textbook Introduction to Java Programming Custom textbook for CS 170 Tony Gaddis-ISBN: Available in the OCC bookstore ($75) Includes 7 chapters from the 4th edition Starting Out With Java: From Control Structures through Objects ISBN: May purchase complete text from Amazon, etc.

10 Software and Supplies Software is all free and cross-platform At home, you can use Windows, Unix/Linux, Mac OS X Use Java version 6 (may use 5 on older Macs (10.4)) An OCC-customized version of DrJava IDE Can put everything on a USB thumb drive Then you can work on almost any computer Transfer files using Blackboard or get a Dropbox account

11 Rules for the Course May take Pass/Fail; request deadline on your schedule No late work accepted Assignments normally due by noon on Monday 45 points possible extra credit to cover "emergencies" Don't wait until the last minute Retry/makeup only for programming proficiency quizzes May re-try up to 4 of the 10 PPQ exams Pay attention to OCC drop deadlines: no Incompletes Do your own work, and act like adults

12 Topic 2 The CS 170 Online Classroom Getting Into the Classroom Getting Around the Classroom Submitting Assignments and Taking Quizzes Reading the Online Lessons

13 Passwords and Logging In You'll have two passwords for this class A OCC Computing-Center password for the LAN See the help-desk in the Computing Center for info A MyOCC password to get into your , etc. Use your MyOCC password to get into the classroom

14 Direct Log-on Can log onto Blackboard directly (no MyOCC) Still use your MyOCC password and ID Probably want to bookmark this Half of your "class-time" will consist of online "lectures" Much of the on-campus work will be hands-on

15 Blackboard Tutorials You'll need to read the online tutorials to learn how to use the online environment (Blackboard Vista)

16 CS 170 Classroom Here's what the CS 170 "online" classroom" looks like:

17 Quizzes You'll take the reading quizzes online, outside of class That means, of course, that they are "open book"

18 Assignments Use the Assignment Drop-box to turn in IC assignments May retrieve assignments up to deadline

19 Your "IC" or "Lab" Document Will submit an "in-class" lab document each week. Use Word or OpenOffice to create a new document Save the file as IC01.doc (Office compatible) Place on your network U: drive or on a thumb drive Put your name and today's date at the top of the sheet Title it "CS 170 In-class Exercise 1" Save and close, upload to Blackboard and submit. Exercise 1.1: show me your assignment submitted Retrieve and discard uploaded file when done.

20 Weekly Lessons Each week, I'll have a "start-page" to the lessons:

21 Homework Assignments Exercise page at bottom of weekly start page Directions, points, submission instructions Start working on Homework 01 now

22 Topic 3 Hands-On: Java Mechanics How are Java programs created? What steps do you follow? What tools do you use?

23 Step 1: Write the Code Use a text editor to write your programming instructions in the Java language Notepad, SciTE, vi, TextWrangler or an IDE We'll use DrJava Called source code Save in a file with the extension.java

24 Step 2: Compile the Code Use a Java compiler to translate your source code into executable machine code javac in the JDK Called bytecode Stored in a file with the extension.class If syntax errors occur, return to text editor

25 Step 3: Run your Program Use a Java Virtual Machine (JVM) to load the bytecode, translate into native machine code and start it running Applications: java.exe or javaw.exe Applets: HTML Web browser, appletviewer If runtime errors occur, return to text editor

26 Your First Java Program We'll first write an application using the DrJava IDE Exercise: copy the cs170home-f10 folder from Q: and place (drop) it on your U:\ (network) or USB Thumb drive Q:\faculty5\sgilbert\cs170\cs170home-F10

27 Starting DrJava Exercise: start the DrJava IDE by opening the tools folder and double-clicking OCDJ-Fall10.jar

28 Logging In Type your last name and student ID to start DrJava. Student ID must start with C Skip any spaces in your last name If you aren't registered or are not connected to the Internet, then select Guest Access Logging-in is needed to record the score for your homework assignments

29 The DrJava IDE

30 Preview: Java Syntax Every Java program is a class definition Class definition is a blueprint to construct objects The basic class structure looks like this: some stuff public class SomeClassName { some more stuff } Must be stored in SomeClassName.java Only one public class per file

31 Step 1: Edit the Source Code Find source code for program at: Q:\faculty5\sgilbert\cs170\edit-program01.gif Right-click, "Preview" Type in code, replacing noted portions Save the file when done Exercise 1.2 Screenshot of source

32 Step 2: Compiling Your Program Several ways to compile your code when saved Right-click to compile a single file Use Compile button to compile all files in Files Pane

33 When Bad Things Happen Common Syntax or Compiler Errors Exercise 1.3 Screenshot of clean compile Syntax must be 100% correct for a program to run Capitalization: (System not system, String not string) Spelling the name of your source file incorrectly Forgetting or mismatching the number of braces Mistaking parentheses for braces Misspelling the name of a variable Edit and then recompile until there are no errors

34 Step 3: Running Your Program You can use the menu command Tools->Run Document, press the F2 key, or click the Run button on the toolbar

35 Viewing the Output Exercise 1.4 Screenshot of output Program is run in DrJava's Interactions Pane Can view just output in Console Pane

36 Testing Your Code Program may not do what you want (logic error) Test by comparing actual and expected output I'll supply tests for first few weeks. Later you'll learn how to write your own test programs. Click the Check button in the menu bar

37 Testing Your Code Check program looks for existing test sets. Select Week 1 and then MyFirstConsoleProgram, click OK

38 Test Results Exercise 1.5 Screenshot of all tests passing Results appear in Interactions and Console panes

39 Check your Style Portion of your grade based on program style Can check that by running the Checkstyle program

40 Fix Style Errors Checkstyle shows errors in external process pane: Correct all style errors by checking line number Exercise 1.6 Screenshot of clean style check

41 GUI App and Java Applet To complete your IC "lab" document: Compile and run a Java GUI application Compile and run a Java applet Shoot screen-shots Submit to Blackboard Instructions are in online lesson on Blackboard May complete this outside of class

42 Finishing Up Reading for next week: Mediacomp: read Chapter 1 and start Chapter 2 Gaddis: start Chapter 1 Homework, Quiz and Assignments Deadline is Tuesday at noon because of Labor Day Introduce yourself on discussion board Three homework problems Upload to Assignment Dropbox. Make sure to press Submit

Welcome to Cinema 105 online!

Welcome to Cinema 105 online! Welcome to Cinema 105 online! This History of Motion Pictures class covers the same content as the face-to-face class, the difference is that everything (materials and interaction) is online and we do

More information

Florida National University Online Courses Platform

Florida National University Online Courses Platform Florida National University Online Courses Platform Created by the Online Learning Dept. September, 2013 * Blackboard System Requirements Accessing Blackboard Logging Into Blackboard Global Navigation

More information

MyMathLab / MyStatLab Advanced Interactive Training Guide

MyMathLab / MyStatLab Advanced Interactive Training Guide MyMathLab / MyStatLab Advanced Interactive Training Guide MYMATHLAB/MYSTATLAB ADVANCED Lesson 1 Manage Multiple Courses... 129 Lesson 2 Export Grades... 135 Lesson 3 Transfer Students... 139 Lesson 4 Design

More information

ANGEL 7.4 MASTER Course Import Guide for MBA Online Instructors

ANGEL 7.4 MASTER Course Import Guide for MBA Online Instructors ANGEL 7.4 MASTER Course Import Guide for MBA Online Instructors The Center for Instructional Technology & elearning Ohio Dominican University elearning.ohiodominican.edu [email protected]

More information

Best Practices with MyMathLab/ Faculty Instruction Manual

Best Practices with MyMathLab/ Faculty Instruction Manual Best Practices with MyMathLab/ Faculty Instruction Manual Help when you need it: MyMath Lab Professor Support 1-888-695-6577 Mon-Thu, 9am to 10pm Fri, 9am to 5pm Sun, 5pm to 10pm all times EST. Your Tech

More information

Online College Algebra (MATH 1302-D10) Fall 2011

Online College Algebra (MATH 1302-D10) Fall 2011 Online College Algebra (MATH 1302-D10) Fall 2011 This course will utilize the online interactive website for delivery of course materials. You may purchase access materials for this course from the ASU

More information

FACULTY GETTING STARTED WITH i>clicker2

FACULTY GETTING STARTED WITH i>clicker2 FACULTY GETTING STARTED WITH i>clicker2 Software The i>clicker software is completely packaged in a single folder and includes the i>clicker, i>grader, and searchable help files. The i>clicker software

More information

Android: Setup Hello, World: Android Edition. due by noon ET on Wed 2/22. Ingredients.

Android: Setup Hello, World: Android Edition. due by noon ET on Wed 2/22. Ingredients. Android: Setup Hello, World: Android Edition due by noon ET on Wed 2/22 Ingredients. Android Development Tools Plugin for Eclipse Android Software Development Kit Eclipse Java Help. Help is available throughout

More information

KIN 104 FITNESS AND WELLNESS ONLINE LECTURE Summer 2016

KIN 104 FITNESS AND WELLNESS ONLINE LECTURE Summer 2016 KIN 104 FITNESS AND WELLNESS ONLINE LECTURE Summer 2016 INSTRUCTOR: Dr. Carrie Edwards OFFICE HOURS: (PE Bldg., Office D): N/A EMAIL: [email protected] (BEST Option) VOICE: Ext. 2876 WEB: www.cerritos.edu/cedwards

More information

Course: ISYS 4373 Application Development with Java Prerequisite: ISYS 3293

Course: ISYS 4373 Application Development with Java Prerequisite: ISYS 3293 COURSE SYLLABUS Course: ISYS 4373 Application Development with Java Prerequisite: ISYS 3293 Welcome: Welcome to ISYS 4373, an introduction to Java programming. The purpose of this course is to provide

More information

Introduction to Psychology Psych 100 Online Syllabus Fall 2014

Introduction to Psychology Psych 100 Online Syllabus Fall 2014 Introduction to Psychology Psych 100 Online Syllabus Fall 2014 Contact Information Professor: Dr. Deborah Maher Office: C&L (Classrooms and Labs) 119 Office phone #: (714) 432-0202, x21190 (best to email

More information

COURSE SYLLABUS INTRODUCTION TO INTERNATIONAL BUSINESS, MGT 301-01 ONLINE FALL 2013

COURSE SYLLABUS INTRODUCTION TO INTERNATIONAL BUSINESS, MGT 301-01 ONLINE FALL 2013 COURSE SYLLABUS INTRODUCTION TO INTERNATIONAL BUSINESS, MGT 301-01 ONLINE FALL 2013 DATES COURSE TOPICS READING DEADLINES Session 1 08/19-08/23 Globalization Ch 1 (in textbook) Unit 1 (in Blackboard Learning

More information

CS A250 (CRN 20690-25399) C++ Programming Language 2. Syllabus Fall 2015

CS A250 (CRN 20690-25399) C++ Programming Language 2. Syllabus Fall 2015 CS A250 (CRN 20690-25399) C++ Programming Language 2 Syllabus Fall 2015 Instructor: Gabriela Ernsberger E-mail: [email protected] Course Web site: www.thisclass.info Office: MB Computing Center

More information

PC Applications IT102 estart Spring 2014

PC Applications IT102 estart Spring 2014 PC Applications IT102 estart Spring 2014 3 credits No prerequisites Instructor Information Debbi Remillard, IT Department NHTI full time faculty member for 16 years as PC Applications Coordinator Email

More information

Angel Learning Management System Introductory Tutorial for Students

Angel Learning Management System Introductory Tutorial for Students Angel Learning Management System Introductory Tutorial for Students Welcome! Angel is the Learning Management System that you ll be using to access your classes. You ll use it to view lessons, submit assignments,

More information

Course Description. Prerequisites. CS-119/119L, Section 0137/0138 Course Syllabus Program Design & Development - Fall 2015

Course Description. Prerequisites. CS-119/119L, Section 0137/0138 Course Syllabus Program Design & Development - Fall 2015 CS-119/119L, Section 0137/0138 Course Syllabus Program Design & Development - Fall 2015 Course Description CS-119 Section 0137 Hybrid course (Classroom/web) 3 Units CS-119L Lab section 0138 1 Unit (You

More information

SAS 9.2.2 Installation via the Client-Server Image (CAHNRS Site License)

SAS 9.2.2 Installation via the Client-Server Image (CAHNRS Site License) Requirements and preliminary steps SAS 9.2.2 Installation via the Client-Server Image (CAHNRS Site License) SAS 9.2.2 will run on Windows XP Pro*, Vista Business/Ultimate**, Windows 7 Professional/Enterprise,

More information

GET INTO OFFICE 365: OneDrive for Business Guide

GET INTO OFFICE 365: OneDrive for Business Guide GET INTO : OneDrive for Business Guide Your classroom resources online, anywhere at any time. This guide will introduce you to OneDrive for Business, which is part of the Office 365 offering provided by

More information

Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3

Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3 Notepad++ The COMPSCI 101 Text Editor for Windows The text editor that we will be using in the Computer Science labs for creating our Python programs is called Notepad++ and http://notepad-plus-plus.org

More information

CN-ONLINE LEARNING MANAGEMENT SYSTEM STUDENT MANUAL

CN-ONLINE LEARNING MANAGEMENT SYSTEM STUDENT MANUAL 2011-2012 CARSON- NEWMAN COLLEGE CN-ONLINE LEARNING MANAGEMENT SYSTEM STUDENT MANUAL Table of Contents Introduction... 1 Getting Started... 1 Accessing and Logging In to C-N Online... 2 Access... 2 Log

More information

Business Administration 318: Value through Capital Online Course Syllabus

Business Administration 318: Value through Capital Online Course Syllabus Business Administration 318: Value through Capital Online Course Syllabus Instructor: Deb Bauer Class Location: online Office: 427 Lillis Phone: 346-2836 (email is better) e-mail: [email protected] CRN:

More information

CIS 101 - Mac OS - Syllabus

CIS 101 - Mac OS - Syllabus CIS 101 - Mac OS - Syllabus Spring 2013 Updated 2/9/13 Menu Homepage Homework Assignment Calendar Syllabus Download or Printout the Syllabus Contact Info Class Dates & Meeting Times Required Text & Materials

More information

NURS 1050 Medical Terminology. Course Description

NURS 1050 Medical Terminology. Course Description 1 NURS 1050 Medical Terminology Course Description This course is a study of the language of the allied health sciences, nursing, and medicine. The meaning and pronunciation of complex words are presented

More information

Merak Outlook Connector User Guide

Merak Outlook Connector User Guide IceWarp Server Merak Outlook Connector User Guide Version 9.0 Printed on 21 August, 2007 i Contents Introduction 1 Installation 2 Pre-requisites... 2 Running the install... 2 Add Account Wizard... 6 Finalizing

More information

COURSE SYLLABUS DESIGNING WEB PAGES COP3835-RVC-1121 GENERAL INFORMATION IMPORTANT INFORMATION PROFESSOR INFORMATION

COURSE SYLLABUS DESIGNING WEB PAGES COP3835-RVC-1121 GENERAL INFORMATION IMPORTANT INFORMATION PROFESSOR INFORMATION COURSE SYLLABUS DESIGNING WEB PAGES COP3835-RVC-1121 GENERAL INFORMATION IMPORTANT INFORMATION COURSE DETAIL COURSE CALENDAR GENERAL INFORMATION PROFESSOR INFORMATION Instructor: Timothy Walker Phone/Text:

More information

Introduction to Psychology 100 On-Campus Fall 2014 Syllabus

Introduction to Psychology 100 On-Campus Fall 2014 Syllabus Introduction to Psychology 100 On-Campus Fall 2014 Syllabus Contact Information Professor: Dr. Deborah Maher Office: C&L (Classrooms and Labs) 119 Office phone #: (714) 432-0202, x21190 (best to email

More information

On premise upgrade guide (to 3.3) XperiDo for Microsoft Dynamics CRM

On premise upgrade guide (to 3.3) XperiDo for Microsoft Dynamics CRM On premise upgrade guide (to 3.3) XperiDo for Microsoft Dynamics CRM Last updated: 12-02-2015 Table of contents Table of contents... 2 1 Beginning... 4 1.1 Prerequisites and required files... 4 1.2 Support

More information

User s Guide: Archiving Work from an LMS PROJECT SHARE

User s Guide: Archiving Work from an LMS PROJECT SHARE User s Guide: Archiving Work from an LMS PROJECT SHARE Table of Contents Courses... 2 Groups... 8 eportfolio... 10 File Manager... 14 Institution Administrators... 15 Page 1 The Epsilen learning management

More information

CS 300-1 Client Side Web Development, Hybrid (crn # 10332) Fall 2015 Northeastern Illinois University > College of Arts & Sciences > Syllabus

CS 300-1 Client Side Web Development, Hybrid (crn # 10332) Fall 2015 Northeastern Illinois University > College of Arts & Sciences > Syllabus CS 300-1 Client Side Web Development, Hybrid (crn # 10332) Fall 2015 Northeastern Illinois University > College of Arts & Sciences > Syllabus COURSE INFORMATION Credit Hours: 3.0 Course Description: The

More information

Mastering the JangoMail EditLive HTML Editor

Mastering the JangoMail EditLive HTML Editor JangoMail Tutorial Mastering the JangoMail EditLive HTML Editor With JangoMail, you have the option to use our built-in WYSIWYG HTML Editors to compose and send your message. Note: Please disable any pop

More information

Exporting Your Blackboard Courses

Exporting Your Blackboard Courses Exporting Your Blackboard Courses Blackboard courses remain on the server for one year after the end of the semester in which they are taught. If you wish to have access to your Blackboard courses after

More information

Dreamweaver CS6 Basics

Dreamweaver CS6 Basics Dreamweaver CS6 Basics Learn the basics of building an HTML document using Adobe Dreamweaver by creating a new page and inserting common HTML elements using the WYSIWYG interface. EdShare EdShare is a

More information

My Secure Backup: How to reduce your backup size

My Secure Backup: How to reduce your backup size My Secure Backup: How to reduce your backup size As time passes, we find our backups getting bigger and bigger, causing increased space charges. This paper takes a few Newsletter and other articles I've

More information

Physics 21-Bio: University Physics I with Biological Applications Syllabus for Spring 2012

Physics 21-Bio: University Physics I with Biological Applications Syllabus for Spring 2012 Physics 21-Bio: University Physics I with Biological Applications Syllabus for Spring 2012 Class Information Instructor: Prof. Mark Reeves (Samson 214, [email protected] 46279) Office Hours: Tuesday 4:30-5:15

More information

Student User Guide for BioPortal Biochemistry, Seventh Edition

Student User Guide for BioPortal Biochemistry, Seventh Edition Student User Guide for BioPortal Biochemistry, Seventh Edition Berg, Tymoczko, & Stryer Getting Started with BioPortal for Berg, Tymoczko, & Stryer Biochemistry, 7e Table of Contents Overview... 1 Getting

More information

Access to Moodle. The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout.

Access to Moodle. The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout. Access to Moodle The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout. 1. The homepage of Lasell Learning Management System Moodle is

More information

TITLE: Elementary Algebra and Geometry OFFICE LOCATION: M-106 COURSE REFERENCE NUMBER: see Website PHONE NUMBER: (619) 388-3252

TITLE: Elementary Algebra and Geometry OFFICE LOCATION: M-106 COURSE REFERENCE NUMBER: see Website PHONE NUMBER: (619) 388-3252 SDCCD ONLINE COURSE: MATH 95 PROFESSOR: David Kater TITLE: Elementary Algebra and Geometry OFFICE LOCATION: M-106 COURSE REFERENCE NUMBER: see Website PHONE NUMBER: (619) 388-3252 OFFICE HOURS: Online.

More information

COMP-202B: Foundations of Programming

COMP-202B: Foundations of Programming COMP-202B: Foundations of Programming McGill University, Winter 2015 Course Details Instructor: Jonathan Tremblay Office: McConnell Engineering Building (MC) 231 Office hours: Monday & Wednesday 9:00 10:00

More information

etroy Course Syllabus BUS 3382 XTIA Business Communication Term 1, 2015 August 10 October 11, 2015

etroy Course Syllabus BUS 3382 XTIA Business Communication Term 1, 2015 August 10 October 11, 2015 etroy Course Syllabus XTIA Business Communication Term 1, 2015 August 10 October 11, 2015 For course syllabus posted prior to the beginning of the term, the instructor reserves the right to make minor

More information

Student s Guide to Blackboard

Student s Guide to Blackboard Student s Guide to Blackboard MADONNA UNIVERSITY 2007 What is Blackboard? Blackboard delivers the course management tools that enable instructors to provide their students with course materials, discussion

More information

Student Quick Start Guide

Student Quick Start Guide Student Quick Start Guide Copyright 2012, Blackboard Inc. Student Quick Start Guide 1 Part 1: Requesting Enrollment and Accessing the Course 1.1 1.2 1.3 Accepting a Course Invitation and Accessing the

More information

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS ITSE 1432 INTRODUCTION TO VISUAL BASIC.NET PROGRAMMING

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS ITSE 1432 INTRODUCTION TO VISUAL BASIC.NET PROGRAMMING BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS ITSE 1432: INTRODUCTION TO VISUAL BASIC.NET PROGRAMMING COMPUTER TECHNOLOGY & OFFICE ADMINISTRATION DEPARTMENT CATALOG DESCRIPTION ITSE 1432 INTRODUCTION

More information

Using. Microsoft Virtual PC. Page 1

Using. Microsoft Virtual PC. Page 1 Using Microsoft Virtual PC T4 Page 1 Microsoft Virtual PC Microsoft Virtual PC allows multiple Guest Operating Systems (Virtual Machines) to run using the resources of the Host Operating System (The PC

More information

Google Docs A Tutorial

Google Docs A Tutorial Google Docs A Tutorial What is it? Google Docs is a free online program that allows users to create documents, spreadsheets and presentations online and share them with others for collaboration. This allows

More information

Online Sections of CIS101, CIS141 & CIS240 About This Course and Getting Started Online Instructor Brad Ford

Online Sections of CIS101, CIS141 & CIS240 About This Course and Getting Started Online Instructor Brad Ford Online Sections of CIS101, CIS141 & CIS240 About This Course and Getting Started Online Instructor Brad Ford Introduction The enclosed information is required reading by the end of the first week of class.

More information

A Crash Course in OS X D. Riley and M. Allen

A Crash Course in OS X D. Riley and M. Allen Objectives A Crash Course in OS X D. Riley and M. Allen To learn some of the basics of the OS X operating system - including the use of the login panel, system menus, the file browser, the desktop, and

More information

Math 1314 Online Syllabus. College Algebra

Math 1314 Online Syllabus. College Algebra Math 1314 Online Syllabus ( College Algebra) Instructor: Dr. Lee Topham This online College Algebra course runs 7 days a week with no holidays. I am online every day and will have my laptop with me if

More information

I ve logged in! Now where do I start?

I ve logged in! Now where do I start? I ve logged in! Now where do I start? Instructor s Quick Start Guide Introduction: Up and Running with OpenClass We ve created this Quick Start Guide to help you, the instructor, get up and running with

More information

Law College Computer and Technology Information

Law College Computer and Technology Information Law College Computer and Technology Information Account Creation All law students, faculty and staff must have a University of Toledo authentication domain (UTAD) computer account. This account will allow

More information

AMBERTON UNIVERSITY e-course SYLLABUS

AMBERTON UNIVERSITY e-course SYLLABUS MGT5193.E1 Negotiation Skills for Managers SUMMER 2016 PROFESSOR INFORMATION: Name: Dr. Kimanya Ards Phone Number: 972-279-6511 ext. 159 Email Address: [email protected] AMBERTON UNIVERSITY e-course SYLLABUS

More information

Outlook basics. Identify user interface elements that you can use to accomplish basic tasks.

Outlook basics. Identify user interface elements that you can use to accomplish basic tasks. Outlook basics Outlook is a powerful tool for managing your e-mail, contacts, calendars, and tasks. To use it most effectively, you first have to understand the basics. This tutorial introduces some of

More information

MATH 1351 (3:3:0) Fundamentals of Mathematics II (Online Course) MATHEMATICS DEPARTMENT. Division of Arts & Sciences

MATH 1351 (3:3:0) Fundamentals of Mathematics II (Online Course) MATHEMATICS DEPARTMENT. Division of Arts & Sciences MATH 1351 (3:3:0) Fundamentals of Mathematics II (Online Course) MATHEMATICS DEPARTMENT Division of Arts & Sciences South Plains College Reese Center Summer I 2014 Traci Sanders 2 Fundamentals of Mathematics

More information

COMP 1405 Intro. to Computer Science I. Course Outline (F2015)

COMP 1405 Intro. to Computer Science I. Course Outline (F2015) Carleton University School of Computer Science COMP 1405 Intro. to Computer Science I Course Outline (F2015) Course Information Instructor: Mark Lanthier (Office 5127HP, Phone: 520-2600x8305, Email: [email protected])

More information

Math 1314 Online Syllabus. College Algebra

Math 1314 Online Syllabus. College Algebra Math 1314 Online Syllabus (College Algebra) Instructor: Dr. Lee Topham Contact info: Office: FTC-100(Kingwood) Ph: 281-312-1685 Office E-mail: [email protected] Response time: Usually within 24

More information

etroy Abnormal Psychology 3304 TERM 1, 2015

etroy Abnormal Psychology 3304 TERM 1, 2015 etroy Abnormal Psychology 3304 TERM 1, 2015 For course syllabus posted prior to the beginning of the term, the instructor reserves the right to make minor changes prior to or during the term. The instructor

More information

BLACKBOARD BASICS for ONLINE CLASSES & Classes with Online Components

BLACKBOARD BASICS for ONLINE CLASSES & Classes with Online Components BLACKBOARD BASICS for ONLINE CLASSES & Classes with Online Components Full up-to-date information can be found online beginning at: http://www.saddleback.edu/de/ Video instructions for Blackboard are online

More information

CS3332 Software Engineering I. Term III/2016

CS3332 Software Engineering I. Term III/2016 etroy Course Syllabus Term III/2016 For course syllabus posted prior to the beginning of the term, the instructor reserves the right to make minor changes prior to or during the term. The instructor will

More information

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family technology software href browser communication public login address img links social network HTML div style font-family url media h2 tag handbook: id domain TextEdit blog title CANAJOHARIE CENTRAL SCHOOL

More information

MathXL Getting Started Guide for Instructors

MathXL Getting Started Guide for Instructors MathXL Getting Started Guide for Instructors Copyright Notice Copyright 2013 by Pearson Education. All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form

More information

Your First App Store Submission

Your First App Store Submission Your First App Store Submission Contents About Your First App Store Submission 4 At a Glance 5 Enroll in the Program 5 Provision Devices 5 Create an App Record in itunes Connect 5 Submit the App 6 Solve

More information

1001ICT Introduction To Programming Lecture Notes

1001ICT Introduction To Programming Lecture Notes 1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 3 A First MaSH Program In this section we will describe a very

More information

Earth Science 102 Introduction to Physical Geology Fall 2015 Online

Earth Science 102 Introduction to Physical Geology Fall 2015 Online Parkland College Earth Science Courses Natural Sciences Courses 2015 Earth Science 102 Introduction to Physical Geology Fall 2015 Online Julie Angel Parkland College, [email protected] Recommended Citation

More information

1.00 Lecture 1. Course information Course staff (TA, instructor names on syllabus/faq): 2 instructors, 4 TAs, 2 Lab TAs, graders

1.00 Lecture 1. Course information Course staff (TA, instructor names on syllabus/faq): 2 instructors, 4 TAs, 2 Lab TAs, graders 1.00 Lecture 1 Course Overview Introduction to Java Reading for next time: Big Java: 1.1-1.7 Course information Course staff (TA, instructor names on syllabus/faq): 2 instructors, 4 TAs, 2 Lab TAs, graders

More information

How to Attach the Syllabus and Course Schedule to a Content Item

How to Attach the Syllabus and Course Schedule to a Content Item How to Attach the Syllabus and Course Schedule to a Content Item Getting Started Part of preparing your course for delivery to students includes uploading your syllabus and course schedule to your online

More information

CIS305 - Course Syllabus

CIS305 - Course Syllabus CIS305 - Course Syllabus Course: Instructor: Semester: Section 01 Email & Office: Course URL: Web and Internet Publishing Donna J Ehrhart Spring Monday/Wednesday/Friday 9:05-10:00 am Drake Library Lower

More information

IBM Bluemix Tutorial Connecting Eclipse to Bluemix v2.0

IBM Bluemix Tutorial Connecting Eclipse to Bluemix v2.0 IBM Bluemix http://ibm.biz/bluemixph A platform where developers can act like kids in a sandbox except this box is enterprise-grade. This laboratory exercise demonstrates how to connect Eclipse to Bluemix

More information

Using Google Docs in the classroom: Simple as ABC

Using Google Docs in the classroom: Simple as ABC What is Google Docs? Google Docs is a free, Web-based word processing, presentations and spreadsheets program. Unlike desktop software, Google Docs lets people create web-based documents, presentations

More information

Welcome to Online Speech 104

Welcome to Online Speech 104 Welcome to Online Speech 104 I want to welcome you to this online version of Speech 104, Argumentation and Critical Thinking. In this course we will cover everything we do in the face to face version of

More information

Del Mar College - Mathematics Department SYLLABUS for the Online College Algebra Math 1314 Summer 2014

Del Mar College - Mathematics Department SYLLABUS for the Online College Algebra Math 1314 Summer 2014 1 Del Mar College - Mathematics Department SYLLABUS for the Online College Algebra Math 1314 Summer 2014 INSTRUCTOR: Barbara Finnegan OFFICE: MC 112B OFFICE HOURS: Monday, Wednesday, Tuesday, Thursday

More information

Technology Department Computer and Network Support Capstone CMP 259-D01 Syllabus: Spring 2015

Technology Department Computer and Network Support Capstone CMP 259-D01 Syllabus: Spring 2015 Technology Department Computer and Network Support Capstone CMP 259-D01 Syllabus: Spring 2015 Professor: Curtis Satterfield Office Hours: Monday 3:00 5:00 PM, Tuesday 3:00 5:00 PM, Wednesday 12:00p 1:00p

More information

Online Course Syllabus. POL 1113: American National Government. Fall 2015

Online Course Syllabus. POL 1113: American National Government. Fall 2015 Online Course Syllabus POL 1113: American National Government Fall 2015 Instructor Information Name & contact: Marija Naumoski (MA, University of Central Oklahoma). All inquiries must be sent via UCO's

More information

D2L STUDENT MANUAL. Prepared by KAMEL SMIDA. Head of E-Learning Unit at the. Applied Medical Sciences College. Majmaah University 5/10/2014

D2L STUDENT MANUAL. Prepared by KAMEL SMIDA. Head of E-Learning Unit at the. Applied Medical Sciences College. Majmaah University 5/10/2014 2014 D2L STUDENT MANUAL Prepared by KAMEL SMIDA Head of E-Learning Unit at the Applied Medical Sciences College Majmaah University 5/10/2014 M U u n i v e r s i t y D e a n s h i p O f E - L e a r n i

More information

Spanish 002, Elementary Spanish II Online Class. Section #8193, Fall 2014. Norma Jacinto, Spanish Instructor

Spanish 002, Elementary Spanish II Online Class. Section #8193, Fall 2014. Norma Jacinto, Spanish Instructor Fall 2014 Spanish 002 Online Spanish 002, Elementary Spanish II Online Class Section #8193, Fall 2014 Norma Jacinto, Spanish Instructor ETUDES (online classroom) www.myetudes.org SUPERSITE (homework and

More information

Statistical Methods Online Course Syllabus

Statistical Methods Online Course Syllabus VALENCIA COLLEGE EAST CAMPUS STA 2023 STATISTICAL METHODS (ONLINE COURSE) SYLLABUS Term/Year: Fall 2011 CRN: 11563/11615/13231/11839 Professor: Dr. Agatha Shaw E-mail: Blackboard Course E-Mail or [email protected]

More information

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc.

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc. WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Software

More information

Advanced Digital Imaging

Advanced Digital Imaging Asset Management System User Interface Cabin River Web Solutions Overview The ADI Asset Management System allows customers and ADI to share digital assets (images and files) in a controlled environment.

More information

ANGEL 8.0 Instructor Quick Start Tutorial

ANGEL 8.0 Instructor Quick Start Tutorial ANGEL 8.0 Instructor Quick Start Tutorial 6510 Telecom Drive, Suite 400 Indianapolis, IN 46278 Copyright 2011 Blackboard, Inc. All rights reserved. Page 1 of 108 Table of Contents ANGEL 8.0 Instructor

More information

Learning Management System User Guide. version 07082013

Learning Management System User Guide. version 07082013 Learning Management System User Guide version 07082013 1 Contents 1. Getting Started Creating an Account Activating Your Course or Library Logging In and Out of Your Training Account Setting Up Your Profile

More information

Welcome to Online Introductory Biology 101

Welcome to Online Introductory Biology 101 Welcome to Online Introductory Biology 101 Clackamas Community College Welcome to an exciting way to learn Biology- online and at home. The attached sheet gives you the steps for getting started or "enrolled"

More information

CSSEA Helpdesk User Guide

CSSEA Helpdesk User Guide CSSEA Helpdesk User Guide Contents I. Creating tickets... 3 1. Creating a New Ticket via Email... 3 a. Email format... 3 b. New ticket reply... 3 2. Creating a New ticket via the Website... 4 a. Browse

More information

Blackboard Learning System: Student Instructional Guide

Blackboard Learning System: Student Instructional Guide Blackboard Learning System: Student Instructional Guide This manual was prepared to assist students in the understanding, orientation, and usage of the Blackboard Learning System online course management

More information

DISTANCE EDUCATION. Blackboard Learn - Getting Started Guide for Students. VISIT US ONLINE AT http://www.centralgatech.edu/disted

DISTANCE EDUCATION. Blackboard Learn - Getting Started Guide for Students. VISIT US ONLINE AT http://www.centralgatech.edu/disted DISTANCE EDUCATION Blackboard Learn - Getting Started Guide for Students VISIT US ONLINE AT http://www.centralgatech.edu/disted BbLearn Getting Started Guide for Students Table of Contents Accessing the

More information

SilkTest Workbench. Getting Started with.net Scripts

SilkTest Workbench. Getting Started with.net Scripts SilkTest Workbench Getting Started with.net Scripts Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2010 Micro Focus (IP) Limited. All Rights Reserved. SilkTest

More information

MyMathLab / MyStatLab Beginning Interactive Training Guide

MyMathLab / MyStatLab Beginning Interactive Training Guide MyMathLab / MyStatLab Beginning Interactive Training Guide MYMATHLAB/MYSTATLAB BEGINNING Lesson 1 Set Up Your First Course... 5 Lesson 2 Explore Your Course... 13 Lesson 3 Customize the Home Page... 24

More information

Acct 148: Computer Accounting Syllabus

Acct 148: Computer Accounting Syllabus Acct 148: Computer Accounting Syllabus MiraCosta College, Spring 2015, Section 1270 Instructor Information Instructor Email/ Office Location & Hours Pat Hartley, MBA [email protected] [email protected]

More information

ACT State Testing Online Services Tutorial

ACT State Testing Online Services Tutorial ACT State Testing Online Services Tutorial Back-up Test Supervisor Version Released July, 2009 2009 by ACT, Inc., All rights reserved. Back-up Test Supervisor Online Profile Form Introduction The Back-up

More information

CS1400 Introduction to Computer Science

CS1400 Introduction to Computer Science CS1400 Introduction to Computer Science Course Syllabus Text: Starting Out with C++ (8th Edition) by Tony Gaddis et al, published by Addison-Wesley ISBN: 978-0133360929 Meets: Section 002: TR 1:30-2:45,

More information

SIMIAN systems. Sitellite Desktop User Manual. Sitellite Professional Edition

SIMIAN systems. Sitellite Desktop User Manual. Sitellite Professional Edition Sitellite Desktop User Manual Sitellite Professional Edition Introduction The Sitellite Desktop is a cross-platform desktop application that can manage one or more Sitellite 5-powered websites in a more

More information

Online Course Syllabus CS320: C Programming

Online Course Syllabus CS320: C Programming Online Course Syllabus CS320: C Programming Important Notes: This document provides an overview of expectations for this online course and is subject to change prior to the term start. Changes may also

More information

RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE. CISY 105 Foundations of Computer Science

RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE. CISY 105 Foundations of Computer Science I. Basic Course Information RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE CISY 105 Foundations of Computer Science A. Course Number and Title: CISY-105, Foundations of Computer Science B. New

More information

Programming with the Dev C++ IDE

Programming with the Dev C++ IDE Programming with the Dev C++ IDE 1 Introduction to the IDE Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. As similar IDEs, it offers to the programmer

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

City Tech Instructional Technology & Media Services. Blackboard Tutorial for Students

City Tech Instructional Technology & Media Services. Blackboard Tutorial for Students City Tech Instructional Technology & Media Services Blackboard Tutorial for Students How to find your courses After you log-in to Blackboard by visiting CUNY website at http://www.cuny.edu=>portal Login/Blackboard/eSIMS=>Blackboard

More information

Apollo ACC PCI Registry Export Basics

Apollo ACC PCI Registry Export Basics Training Apollo ACC PCI Registry Export Basics Barbara O Brien Product Education Trainer Registry Export Assistance Clinical Content Contact the Registry Software Questions LUMEDX Support 1.800.966.0669

More information

The Blackboard Content System: A Quick Start Guide

The Blackboard Content System: A Quick Start Guide The Blackboard Content System: A Quick Start Guide 2009 Instructional Support Center, Temple University Table of Contents Part 1-Overview of the Blackboard Content System 3 What is the Blackboard Content

More information

Online Web Learning University of Massachusetts at Amherst

Online Web Learning University of Massachusetts at Amherst GETTING STARTED WITH OWL COURSE MANAGEMENT Online Web Learning University of Massachusetts at Amherst A Series of Hands-on Activities to Teach You How to Manage Your Course Using the OWL Instructor Tools

More information

Google App Engine f r o r J av a a v a (G ( AE A / E J / )

Google App Engine f r o r J av a a v a (G ( AE A / E J / ) Google App Engine for Java (GAE/J) What is Google App Engine? Google offers a cloud computing infrastructure calledgoogle App Engine(App Engine) for creating and running web applications. App Engine allows

More information