COURSE OUTLINE ACADEMIC YEAR 2016/2017

Size: px
Start display at page:

Download "COURSE OUTLINE ACADEMIC YEAR 2016/2017"

Transcription

1 Faculty Faculty Availability Program Coordinator COURSE OUTLINE ACADEMIC YEAR 2016/2017 Course Title: Unix Scripting Course Code: CENG 200 Schedule Type Code: LLB Credit Value: 3 Class Hours: 45 Program: Computer Engineering Technology Pre-requisite for: CENG 251 Unix Internals CENG 256 Internet Scripting Restrictions: Pre-Requisite(s): TECH 153 Technical C Co-requisite(s): Approved By: Vincent Shaikh M. Eng., Associate Dean Signature: Date: Fall 2016 Course Description Students will learn to use a variety of useful Unix commands to manipulate directories and files, redirect input and output, arrange commands as a chain of filters and implement Unix scripts and functions. Students will also create web pages using HTML and CSS markup, control visibility on the web and create a simple web application that exchanges data between web client and a script/program running on a web server. Learners will be introduced to Internet resources. They will use ssh and sftp as well as various Internet network utilities such as curl, wget and scp to remotely access other systems.

2 Course Rationale To allow student to work in a UNIX/Linux environment and create web pages. Learning Outcomes Upon successful completion of this course, students will be able to: 1. Navigate through a UNIX command line and X-Windows environment. 2. Describe the major components of the UNIX file system. 3. Use UNIX commands and filters. 4. Develop simple shell scripts and functions 5. Apply appropriate levels of security permissions to files and directories 6. Navigate the Internet using browsers, ssh and sftp. 7. Develop Web pages, using HTML and CSS markup languages 8. Create user forms and send data from to CGI and JSP Essential Employability Skills Essential Employability Skills are transferable skills that provide the foundation for a student s academic, vocational, and personal success. Communication Numeracy Critical Thinking & Problem Solving Information Management Interpersonal Personal Upon successful completion of this course, students will demonstrate the following competencies: 1. Demonstrate the ability to respond correctly to oral and written instructions. 2. Use appropriate course-related terminology in reports and discussions. 3. Read, comprehend and apply as appropriate standard reference materials, manuals, and diagrams. 4. Maintain a clear and accurate written record of lab work. 5. Participate in class discussions 6. Apply the fundamentals of number systems. 7. Participate effectively in-group discussions. 8. Work with others by co-operating, sharing ideas and constructively resolving conflicts. 9. Demonstrate understanding of the need to respect the rights of individuals 10. Take responsibility for the learner's own actions and decisions.

3 Learning Resources Required Resources: Kochan, Stephen G., Unix Shell Programming, 3rd edition, Sams, 2003, ISBN: Elizabeth Castro and Bruce Hyslop, HTML5 and CSS3, Eighth Edition (Visual Quickstart Guide), Peachpit Press, 2013, ISBN: (note: the 7 th edition is NOT recommended) Tutorial and web reference material at Copyright Copyright is the exclusive legal right given to a creator to reproduce, publish, sell or distribute his/her work. All members of the Humber community are required to comply with Canadian copyright law which governs the reproduction, use and distribution of copyrighted materials. This means that the copying, use and distribution of copyright- protected materials, regardless of format, is subject to certain limits and restrictions. For example, photocopying or scanning an entire textbook is not allowed, nor is distributing a scanned book. See the Humber Libraries website ( for additional information regarding copyright and for details on allowable limits. Learning Delivery Format 2 hour Interactive lecture and discussion 1 hour lab period. Lab attendance is essential both for dealing with problems and so that students can receive feedback Unix topics and Web Page topics will be delivered in parallel with approximately one period of lecture devoted to each every week.

4 Course Content Unit Topics Assessments Resources 1. Overview of Operating System Concepts Describe major components of a typical modern computer Navigate the X Windows environment The Unix Design Philosophy Use command line help commands such as help, man, which, file, whereis, locate, info and apropos. 2. Edit Files Students were introduced to the vim developers editor in TECH153. All editing in this course will be done in vim. As part of this course various vim commands and macros will be introduced as needed to increase the student s facility with this tool. 3. Files and Directory Organization Describe directory and file hierarchies. Use the stat and ls commands to show the properties of a file. Define root directory, pathname, working directory, permission bits, and inode value. Manage directories and files using mkdir, rmdir, rm, cp, mv and rm. Use of shell patters *,?, [ ] and { } to expand references to file names Create symbolic and hard linked files and describe the underlying implementation using paths or inodes. Use the file and type commands to determine the type of a file. Observe the effect of various commands on the ctime, mtime and atime of a file and the directory in which it appears Recognize and print printable files.

5 Unit Topics Assessments Resources 4. Security Use of chmod to set read, write and execute permissions on files and directories using both symbolic and octal forms Use of umask to set default permissions, using both symbolic and octal forms Use of chgrp and newgroup to create files with different group ownership Use chmod to make web pages visible on the Internet. Use of setfacl and getfacl to set individual and group access for specific files 5. Regular Expressions Regular expressions a common mechanism used to automatically search for and replace text. Students will: Use *, +, ^, $, {n,m}, [list],[^list], (pattern1 pattern2), <word> to search for text using grep. Use the same patterns to search and replace patterns found using the vim editor. Use the same patterns to replace text using sed. (Coverage of sed will be limited to the use of regular expressions.) 6. UNIX Commands and Utilities I Describe the operation of basic Unix commands such as: date, who, man, ls, cat, echo, printf, cd, pwd and finger Describe the use of shell metacharacters such as: *,?, [ ], ( ), (( )), {},, >, >>, <, <<, &, ;, :, && and. Define standard input, standard output, standard error, pipes and filters. Control multiple processes and jobs using commands such as: ps, &, wait, kill, fg, bg, jobs. Create new command names using alias. Reorder records by specified fields using the sort command and use uniq to count and remove duplicate records from a file. An emphasis will be placed on the different representations of time used in Unix through the use of time zones (/usr/share/zoneinfo), date format codes and the difference between elapsed, system and compute times.

6 Unit Topics Assessments Resources 7. Unix Commands and Utilities II Patterns and Text Manipulation Generate and interpret output from the who, ps, date and last commands Use the cut command to extract information from files either by character or by delimited fields. Use head and tail to extract lines from a file. Use grep to extract lines matched by pattern from a file (These same patterns will be tested within vim.) Use the sed editor to extract data either matched by line numbers or patterns from a file Use paste to join files vertically. Use the find command to search for files based on properties such as name. Build a pipeline of commands using so that the output of one command is the input of the next. (filter programs) Duplicate the output of a command using the tee command and direct the output to other files or other processes using >(process) 8. Unix Shell Environment Name different shells available for UNIX including: sh, csh, ksh, bash. Describe the use of shell environment variables such as: HOME, PATH, CDPATH, TERM, RANDOM, and PS1-4. Create and use local variables. Configure and use the hidden file.bashrc to set up a user environment Understand the purpose of each of the 4 quote symbols: single quote, backquote, double quote and backslash Use the export command to distinguish between local and exported variables Employ subshells as temporary/experimental environments.

7 Unit Topics Assessments Resources 9. Shell Scripts Create simple shell scripts and make them executable. Pass parameters to shell scripts. Create local and exported functions Use control statements such as if and while Employ test conditions on files such as -z, -e, -x, -r and -w Use arithmetic operations with shell variables, including the use of (( )), let and bc. Use mktemp to create a temporary file to store intermediate results. Debug shell scripts. 10. HTML Formatting Prepare and publish a Web page for viewing with a browser that uses HTML commands to control colour, font, images, http links and protocols such as mailto. Use tags such as <b>, <i>, <strike>,<u>, <mark> and <p> to markup text Use <pre> to disable compression of whitespace Create ordered and unordered lists Create tables using <table>, <tr>, <th> and <td> tags Explain the syntax of regular and singleton HTML tags Explain the syntax of URLs 11. Semantic Markup Use semantic tags such as <abbr>, <address>, <cite>, <div>,<em>, <h1-6> <p>, <quote>, and <span> in a context appropriate to their meaning Prepare web pages appropriately with new HTML tags such as <article>, <nav>, <section>, <aside> and <footer> Define new semantic tags of their own

8 Unit Topics Assessments Resources 12. CSS Formatting Work with rgb values to assign colour Set text properties such as font, size and text-decoration Use the box model to position text and other objects Position text relative to the page margins Use display properties such as none, block and inline 13. HTML Forms Create data entry forms using a variety of input types Determine whether using GET or PUT method is appropriate 14. Use of CGI and JSP Write a simple CGI script that echoes values from a web form Implement a CGI script as a C program Write a simple JSP program that echoes individual values from a web form Introduction to JavaScript and JQuery Insert JavaScript consisting of simple alert, 15. confirm or input dialogs at an inline, in document or external level. Use JQuery and CSS selectors to dynamically set properties of tags and groups of tags in a document. Please note: this course schedule may change as resources and circumstances require. Student Evaluations The following is the suggested evaluation scheme for this course. If the evaluation is changed, the course instructor will provide the student with a written revised evaluation procedure. Activity Weighting Labs/Assignments 40% Midterm Test 25% Final Test 35% Total 100%

9 In addition to meeting all program specific course and credit requirements, students must have a Cumulative Program Grade Point Average (CPGPA) of 60 in order to be eligible for graduation. As a college student, you are responsible for attendance, punctuality, and facilitating a positive and productive learning environment. There is a strong connection or relationship between attendance and grades: higher grades are associated with regular class attendance. Note: Attendance for labs is mandatory. Late assignments are subject to a reduction in the grade earned. Barring extraordinary circumstances such as for which documentation may be required, late penalties are 5% for assignments received later the same day and 10% per day. Students are expected to complete all assignments and write all tests/exams during the normally scheduled dates and times. A passing grade for this course is 50%. To get an overall passing grade in this course, students must independently pass the Tests and the Labs/Assignments portions of the course. If one or more of these sections is less than 50% then the final grade for the course will be the lower of the two marks. Policies and Procedures It is the student s responsibility to be aware of the College Academic Regulations which can be found on the following website: Academic Integrity Academic integrity is essentially honesty in all academic endeavors. Academic integrity requires that students avoid all forms of academic misconduct or dishonesty, including plagiarism, cheating on tests or exams or any misrepresentation of academic accomplishment. Research Activity This course does not include any research activities that involve human participants. Students will gather data ONLY from publicly available sources.

10 Academic Concern/Appeals If a student has questions or concerns regarding a grade on an assignment or test, the student should discuss the matter with the faculty member. The Program Co-ordinator and/or the Associate Dean may be asked to assist if the faculty member and student are unable to resolve issues. For additional information please refer to Section 13 of College s Academic Complaint and Appeal Policy at the web site identified above. Prior Learning Assessment Recognition (PLAR) Course credits may be granted in recognition of prior learning, and that Application for Consideration is made through the Office of the Registrar at PLAR assessment will be done using a combination of interview, challenge exam and skills test. Challenge Exam Portfolio Skills Test Interview Other (Specify) Not Available For PLAR Accessible Learning Services Humber strives to create a welcoming environment for all students where equity, diversity and inclusion are paramount. Accessible Learning Services facilitates equal access for students with disabilities by coordinating academic accommodations and services. Staff in Accessible Learning Services are available by appointment to assess specific needs, provide referrals and arrange appropriate accommodations. If you require academic accommodations, contact: Accessible Learning Services: North Campus: (416) X5090 Lakeshore Campus: (416) X3331 Disclaimer While every effort is made by the professor/faculty to cover all material listed in the outline, the order, content, and/or evaluation may change in the event of special circumstances (e.g. time constraints due to inclement weather, sickness, college closure, technology/equipment problems or changes, etc.). In any such case, students will be given appropriate notification in writing, with approval from the Dean (or designate) of the School.

11 Appendix Essential Employability Skills (Ontario Ministry of Advanced Education and Skills Development Requirements) Communication Reading Writing Speaking Listening Presenting Numeracy Understanding and Applying Mathematical Concepts and Reasoning Analysing and using Numerical Data Conceptualizing Critical Thinking & Problem Solving Analysing Synthesising Evaluating Decision-Making Creative and Innovative Thinking Information Management Gathering and managing information Selecting and using appropriate tools and technology for a task or project Computer literacy Internet skills Interpersonal Teamwork Relationship management Conflict resolution Leadership Networking Personal Managing self Managing change and being flexible and adaptable Engaging in reflective practice Demonstrating personal responsibility Graduates of the program reliably demonstrate the ability to: 1. communicate clearly, concisely and correctly in the written, spoken and visual form that fulfills the purpose and meets the needs of the audience 2. respond to written, spoken, or visual messages in a manner that ensures effective communication 3. execute mathematical operations accurately 4. apply a systematic approach to solve problems 5. use a variety of thinking skills to anticipate and solve problems 6. locate, select, organize and document information using appropriate technology and information systems 7. analyse, evaluate and apply relevant information for a variety of sources 8. show respect for the diverse opinions, values, belief systems n and contributions of others 9. interact with others in groups or teams in ways that contribute to the effect working relationships and the achievement of goals 10. manage the use of time and other resources to complete projects 11. take responsibility for one s actions, decisions, and consequences

Land Acknowledgement COURSE OUTLINE ACADEMIC YEAR 2017/2018. Schedule Type Code: LLB. Signature: Date: Winter 2019

Land Acknowledgement COURSE OUTLINE ACADEMIC YEAR 2017/2018. Schedule Type Code: LLB. Signature: Date: Winter 2019 Land Acknowledgement Humber College is located on the traditional territories of the Ojibwe Anishinabe First Nations people. It is uniquely situated along the Humber River watershed, which historically

More information

COURSE OUTLINE ACADEMIC YEAR 2016/2017. Signature: Date: Winter 2017

COURSE OUTLINE ACADEMIC YEAR 2016/2017. Signature: Date: Winter 2017 Faculty: Email Faculty Availability: Program Coordinator: Mihyar Hesson COURSE OUTLINE ACADEMIC YEAR 2016/2017 Course Title: Unix Internals Course Code: CENG 251 Schedule Type Code: LLB Credit Value: 3

More information

CENG 358 Computer Systems Administration

CENG 358 Computer Systems Administration Land Acknowledgement Humber College is located on the traditional territories of the Ojibwe Anishinabe First Nations people. It is uniquely situated along the Humber River watershed, which historically

More information

INSTITUTE OF TECHNOLOGY AND ADVANCED LEARNING SCHOOL OF APPLIED TECHNOLOGY COURSE OUTLINE ACADEMIC YEAR 2012/2013

INSTITUTE OF TECHNOLOGY AND ADVANCED LEARNING SCHOOL OF APPLIED TECHNOLOGY COURSE OUTLINE ACADEMIC YEAR 2012/2013 INSTITUTE OF TECHNOLOGY AND ADVANCED LEARNING SCHOOL OF APPLIED TECHNOLOGY COURSE OUTLINE ACADEMIC YEAR 2012/2013 COMPUTER AND NETWORK SUPPORT TECHNICIAN COURSE NUMBER: NEST 401 COURSE NAME: INTERNET SCRIPT

More information

BIOINFORMATICS POST-DIPLOMA PROGRAM SUBJECT OUTLINE Subject Title: OPERATING SYSTEMS AND PROJECT MANAGEMENT Subject Code: BIF713 Subject Description:

BIOINFORMATICS POST-DIPLOMA PROGRAM SUBJECT OUTLINE Subject Title: OPERATING SYSTEMS AND PROJECT MANAGEMENT Subject Code: BIF713 Subject Description: BIOINFORMATICS POST-DIPLOMA PROGRAM SUBJECT OUTLINE Subject Title: OPERATING SYSTEMS AND PROJECT MANAGEMENT Subject Code: BIF713 Subject Description: This course provides Bioinformatics students with the

More information

COURSE OUTLINE. School of Engineering Technology and Applied Science

COURSE OUTLINE. School of Engineering Technology and Applied Science COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: PROGRAM: COURSE TITLE: Information and Communication Engineering Technology (ICET) Computer and Communication Networking

More information

COWLEY COLLEGE & Area Vocational Technical School

COWLEY COLLEGE & Area Vocational Technical School COWLEY COLLEGE & Area Vocational Technical School COURSE PROCEDURE FOR Student Level: This course is open to students on the college level in either the freshman or sophomore year. Catalog Description:

More information

COMP229. Joanne Filotti

COMP229. Joanne Filotti Course Outline School: Department: Program: Course Title: Course Code: School of Engineering Technology and Applied Science Information and Communication Engineering Technology Health Informatics Technology

More information

N/A. Yes. Students are expected to review and understand all areas of the course outline.

N/A. Yes. Students are expected to review and understand all areas of the course outline. Course Outline School: Department: Course Title: Eng. Tech. & Applied Science Information and Communication Engineering Technology (ICET) Adv. Web Application Development Course Code: COMP 229 Course Hours/Credits:

More information

CSC209H Lecture 1. Dan Zingaro. January 7, 2015

CSC209H Lecture 1. Dan Zingaro. January 7, 2015 CSC209H Lecture 1 Dan Zingaro January 7, 2015 Welcome! Welcome to CSC209 Comments or questions during class? Let me know! Topics: shell and Unix, pipes and filters, C programming, processes, system calls,

More information

COURSE OUTLINE. School of Engineering Technology and Applied Science. Information and Communication Engineering Technology (ICET)

COURSE OUTLINE. School of Engineering Technology and Applied Science. Information and Communication Engineering Technology (ICET) COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: Information and Communication Engineering Technology (ICET) PROGRAM: Computer Systems and Networks Technician/ Technology

More information

COURSE OUTLINE. School of Engineering Technology and Applied Science. Computer Systems and Networks Technology (CSNT) PRE-REQUISITES/CO-REQUISITES:

COURSE OUTLINE. School of Engineering Technology and Applied Science. Computer Systems and Networks Technology (CSNT) PRE-REQUISITES/CO-REQUISITES: COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: Information and Communication Engineering Technology (ICET) PROGRAM: COURSE TITLE: Computer Systems and Networks

More information

N/A. Yes. Students are expected to review and understand all areas of the course outline.

N/A. Yes. Students are expected to review and understand all areas of the course outline. Course Outline School: Department: Course Title: Eng. Tech. & Applied Science Information and Communication Engineering Technology (ICET) Adv. Web Application Developme Course Code: COMP 229 Course Hours/Credits:

More information

CENG 256 Internet Programming Draft

CENG 256 Internet Programming Draft CENG 256 Internet Programming Draft Note: This draft is for discussion. can be added later. It does not contain the regular boilerplate text for outlines, which COURSE OUTLINE ACADEMIC YEAR 2014/2015 Course

More information

COURSE OUTLINE. School of Engineering Technology and Applied Science PRE-REQUISITES/CO-REQUISITES: CNET201

COURSE OUTLINE. School of Engineering Technology and Applied Science PRE-REQUISITES/CO-REQUISITES: CNET201 COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: Information and Communication Engineering Technology (ICET) PROGRAM: Computer Systems and Networks Technician/ Technology

More information

On successful completion of the course, the students will be able to attain CO: Experiment linked. 2 to 4. 5 to 8. 9 to 12.

On successful completion of the course, the students will be able to attain CO: Experiment linked. 2 to 4. 5 to 8. 9 to 12. CIE- 25 Marks Government of Karnataka Department of Technical Education Bengaluru Course Title: Linux Lab Scheme (L:T:P) : 0:2:4 Total Contact Hours: 78 Type of Course: Tutorial, Practical s & Student

More information

N/A N/A. Yes. Students are expected to review and understand all areas of the course outline.

N/A N/A. Yes. Students are expected to review and understand all areas of the course outline. Course Outline School: Department: Course Title: Eng. Tech. & Applied Science Information and Communication Engineering Technology (ICET) Web Interface Design Course Code: COMP 213 Course Hours/Credits:

More information

COURSE OUTLINE PRE-REQUISITES/CO-REQUISITES: COMP228, COMP214 COURSE ELIGIBILITY FOR PRIOR LEARNING ASSESSMENT AND RECOGNITION (PLAR):

COURSE OUTLINE PRE-REQUISITES/CO-REQUISITES: COMP228, COMP214 COURSE ELIGIBILITY FOR PRIOR LEARNING ASSESSMENT AND RECOGNITION (PLAR): COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: PROGRAM: COURSE TITLE: Information and Communication Engineering Technology (ICET) Software Engineering Technology

More information

COMD Web Design I

COMD Web Design I New York City College of Technology The City University of New York Communication Design COMD 2451 - Web Design I Course Description Required for all associate level students, this capstone course is designed

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS WEB DESIGN I: INTRODUCTION TO WEB TECHNOLOGY WEB 1600

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS WEB DESIGN I: INTRODUCTION TO WEB TECHNOLOGY WEB 1600 PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS WEB DESIGN I: INTRODUCTION TO WEB TECHNOLOGY WEB 1600 Class Hours: 3.0 Credit Hours: 3.0 Laboratory Hours: 0.0 Revised: Fall 2013 Catalog Course Description:

More information

Introduction To Data Processing COMP 153 Business Administration Program/Administrative Studies. Course Outline

Introduction To Data Processing COMP 153 Business Administration Program/Administrative Studies. Course Outline Introduction To Data Processing COMP 153 Business Administration Program/Administrative Studies Course Outline COURSE IMPLEMENTATION DATE: Pre 1998 OUTLINE EFFECTIVE DATE: September 2016 COURSE OUTLINE

More information

INFS 2150 (Section A) Fall 2018

INFS 2150 (Section A) Fall 2018 INFS 2150 (Section A) Fall 2018 Introduction to Web Development Class meets TUE & THU: 12:30am-1:45pm: in Wheatley 114 Instructor: Peter Y. Wu Office: Wheatley 309 Office Hours: Tuesday 9:00 am-12:00 noon;

More information

New York City College of Technology The City University of New York. Department of Communication Design. COMD Web II: Advanced XHTML & CSS

New York City College of Technology The City University of New York. Department of Communication Design. COMD Web II: Advanced XHTML & CSS New York City College of Technology The City University of New York Department of Communication Design COMD 3551 - Web II: Advanced XHTML & CSS Course Description After taking the introductory COMD 2450

More information

Updated: 2/14/2017 Page 1 of 6

Updated: 2/14/2017 Page 1 of 6 MASTER SYLLABUS 2017-2018 A. Academic Division: Business, Industry, and Technology B. Discipline: Engineering Technology C. Course Number and Title: ENGR1910 Engineering Programming D. Course Coordinator:

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS. INTRODUCTION TO INTERNET SOFTWARE DEVELOPMENT CSIT 2230 (formerly CSIT 2645)

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS. INTRODUCTION TO INTERNET SOFTWARE DEVELOPMENT CSIT 2230 (formerly CSIT 2645) PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS INTRODUCTION TO INTERNET SOFTWARE DEVELOPMENT CSIT 2230 (formerly CSIT 2645) Class Hours: 2.0 Credit Hours: 3.0 Laboratory Hours: 2.0 Revised: Fall 2012

More information

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p.

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. 2 Conventions Used in This Book p. 2 Introduction to UNIX p. 5 An Overview

More information

Course Outline 1.0 IDENTIFICATION COURSE INFORMATION 2.0 LEARNING OVERVIEW SUBSECTION. Subject Code INFO. Course Name Fireworks (Adobe)

Course Outline 1.0 IDENTIFICATION COURSE INFORMATION 2.0 LEARNING OVERVIEW SUBSECTION. Subject Code INFO. Course Name Fireworks (Adobe) Course Outline 1.0 IDENTIFICATION COURSE INFORMATION Subject Code INFO Course Name Fireworks (Adobe) Course Code 10152 Effective Term Winter 2011 Classification Foundational Program Code and Name 0000

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CIW JAVASCRIPT FUNDAMENTALS CERTIFICATION WEB 2391

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CIW JAVASCRIPT FUNDAMENTALS CERTIFICATION WEB 2391 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CIW JAVASCRIPT FUNDAMENTALS CERTIFICATION WEB 2391 Class Hours: 1.0 Credit Hours: 1.0 Laboratory Hours: 0.0 Revised: Fall 06 Note: This course

More information

CSCI 6312 Advanced Internet Programming

CSCI 6312 Advanced Internet Programming CSCI 6312 Advanced Internet Programming Section 01, Spring 2018, W, 5:55pm - 8:25pm Instructor: Emmett Tomai Office: ENGR 3.2100 Phone: 665-7229 Email: emmett.tomai@utrgv.edu Office hours: W 1 3pm, TR

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS LINUX ADVANCED SYSTEM & NETWORK ADMINISTRATION CSIT 2475

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS LINUX ADVANCED SYSTEM & NETWORK ADMINISTRATION CSIT 2475 PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS LINUX ADVANCED SYSTEM & NETWORK ADMINISTRATION CSIT 2475 Class Hours: 3.0 Credit Hours: 4.0 Laboratory Hours: 3.0 Revised: Fall 09 Catalog Course Description:

More information

COURSE OUTLINE. School of Engineering Technology and Applied Science. Electronics Engineering Technology/ Technician. Wireless Networks & Applications

COURSE OUTLINE. School of Engineering Technology and Applied Science. Electronics Engineering Technology/ Technician. Wireless Networks & Applications COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: Information and Communication Engineering Technology (ICET) PROGRAM: Electronics Engineering Technology/ Technician

More information

Construction Electrician Apprenticeship Year 3 ELEC 3 Trades Training. Program Outline

Construction Electrician Apprenticeship Year 3 ELEC 3 Trades Training. Program Outline Construction Electrician Apprenticeship Year 3 ELEC 3 Trades Training Program Outline PROGRAM IMPLEMENTATION DATE: March 2005 OUTLINE EFFECTIVE DATE: March 2017 PROGRAM OUTLINE REVIEW DATE: September 2022

More information

Perl and R Scripting for Biologists

Perl and R Scripting for Biologists Perl and R Scripting for Biologists Lukas Mueller PLBR 4092 Course overview Linux basics (today) Linux advanced (Aure, next week) Why Linux? Free open source operating system based on UNIX specifications

More information

COSC UNIX. Textbook. Grading Scheme

COSC UNIX. Textbook. Grading Scheme COSC 2306 - UNIX Education has failed in a very serious way to convey the most important lesson science can teach: skepticism. - David Suzuki Fall 2008 Aaron Langille Textbook Linux for Programmers and

More information

Industrial Fire Brigade Member - Incipient FIRE 123 Fire Training Certification. Course Outline

Industrial Fire Brigade Member - Incipient FIRE 123 Fire Training Certification. Course Outline Industrial Fire Brigade Member - Incipient FIRE 123 Fire Training Certification Course Outline COURSE IMPLEMENTATION DATE: September 2015 OUTLINE EFFECTIVE DATE: September 2016 COURSE OUTLINE REVIEW DATE:

More information

2. UDP Client, UDP Server

2. UDP Client, UDP Server 2. UDP Client, UDP Server VI Case study on designing network topology A case study to design and configure any organization network eg. College network or campus network, using any packet tracer or network

More information

COURSE OUTLINE. School of Engineering Technology and Applied Science. Computer Systems & Network Technology/ Technician

COURSE OUTLINE. School of Engineering Technology and Applied Science. Computer Systems & Network Technology/ Technician COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: Information and Communication Engineering Technology (ICET) PROGRAM: Computer Systems & Network Technology/ Technician

More information

COURSE OUTLINE. School of Engineering Technology and Applied Science. Computer Systems and Network Technology

COURSE OUTLINE. School of Engineering Technology and Applied Science. Computer Systems and Network Technology COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: Information and Communication Engineering Technology (ICET) PROGRAM: Computer Systems and Network Technology COURSE

More information

COURSE OUTLINE. School of Engineering Technology and Applied Science. Computer Systems & Network Technology / Technician

COURSE OUTLINE. School of Engineering Technology and Applied Science. Computer Systems & Network Technology / Technician COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: Information and Communication Engineering Technology (ICET) PROGRAM: Computer Systems & Network Technology / Technician

More information

Fire Fighting Practices Level 1 and 2 FIRE 127 Fire Training Certification. Course Outline

Fire Fighting Practices Level 1 and 2 FIRE 127 Fire Training Certification. Course Outline Fire Fighting Practices Level 1 and 2 FIRE 127 Fire Training Certification Course Outline COURSE IMPLEMENTATION DATE: September 2015 OUTLINE EFFECTIVE DATE: September 2016 COURSE OUTLINE REVIEW DATE: April

More information

Unix/Linux Operating System. Introduction to Computational Statistics STAT 598G, Fall 2011

Unix/Linux Operating System. Introduction to Computational Statistics STAT 598G, Fall 2011 Unix/Linux Operating System Introduction to Computational Statistics STAT 598G, Fall 2011 Sergey Kirshner Department of Statistics, Purdue University September 7, 2011 Sergey Kirshner (Purdue University)

More information

Information and Communication Technology BCcampus Online Collaborative Program

Information and Communication Technology BCcampus Online Collaborative Program Information and Communication Technology BCcampus Online Collaborative Program Computer Support Technician Certificate (CST) Networking ICT 114 Course Outline COURSE IMPLEMENTATION DATE: Sept 2014 OUTLINE

More information

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS. ITNW 2313: NETWORKING HARDWARE Online Course Version COMPUTER TECHNOLOGY DEPARTMENT

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS. ITNW 2313: NETWORKING HARDWARE Online Course Version COMPUTER TECHNOLOGY DEPARTMENT BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS ITNW 2313: NETWORKING HARDWARE Online Course Version COMPUTER TECHNOLOGY DEPARTMENT CATALOG DESCRIPTION ITNW 2313 Networking Hardware. CIP 1109010007 Maintain

More information

Rochester Institute of Technology Golisano College of Computing and Information Sciences Department of Information Sciences and Technologies

Rochester Institute of Technology Golisano College of Computing and Information Sciences Department of Information Sciences and Technologies Rochester Institute of Technology Golisano College of Computing and Information Sciences Department of Information Sciences and Technologies 4002-360.01 ~ Introduction to Database & Data Modeling ~ Spring

More information

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

More information

Information and Communication Technology BCcampus Online Collaborative Program

Information and Communication Technology BCcampus Online Collaborative Program Information and Communication Technology BCcampus Online Collaborative Program Computer Support Technician Certificate (CST) Computer Hardware ICT 102 Course Outline COURSE IMPLEMENTATION DATE: September

More information

COURSE OUTLINE. SCHOOL: School of Engineering Technology and Applied Science. DEPARTMENT: Information and Communication Engineering Technology (ICET)

COURSE OUTLINE. SCHOOL: School of Engineering Technology and Applied Science. DEPARTMENT: Information and Communication Engineering Technology (ICET) COURSE OUTLINE SCHOOL: School of Engineering Technology and Applied Science DEPARTMENT: Information and Communication Engineering Technology (ICET) PROGRAM (if applicable): Electronics Engineering Technology

More information

JOHNSON COUNTY COMMUNITY COLLEGE COURSE SYLLABUS WEB CRN Web Scripting: JavaScript I

JOHNSON COUNTY COMMUNITY COLLEGE COURSE SYLLABUS WEB CRN Web Scripting: JavaScript I JOHNSON COUNTY COMMUNITY COLLEGE COURSE SYLLABUS WEB 114-002 CRN 12234 Web Scripting: JavaScript I TERM: Spring 2017 DIVISION: Computing Sciences & Information Technology CREDITS: 2 Pre/Corequisite: WEB

More information

SULTAN QABOOS UNIVERSITY COURSE OUTLINE PROGRAM: B.Sc. in Computer Science. Laboratory (Practical) Field or Work Placement

SULTAN QABOOS UNIVERSITY COURSE OUTLINE PROGRAM: B.Sc. in Computer Science. Laboratory (Practical) Field or Work Placement SULTAN QABOOS UNIVERSITY COURSE OUTLINE PROGRAM: B.Sc. in Computer Science 1. Course Code COMP4201 2. Course Title INTRODUCTION TO DATABASE SYSTEMS 3. Credits 3 4. Pre-requisite Course(s) COMP3203 - Introduction

More information

COWLEY COLLEGE & Area Vocational Technical School

COWLEY COLLEGE & Area Vocational Technical School COWLEY COLLEGE & Area Vocational Technical School COURSE PROCEDURE FOR Student Level: This course is open to students on the college level in either the freshman or the sophomore year. Catalog Description:

More information

New York City College of Technology The City University of New York. Department of Communication Design. COMD Dynamic Web I: Web 2.

New York City College of Technology The City University of New York. Department of Communication Design. COMD Dynamic Web I: Web 2. New York City College of Technology The City University of New York Department of Communication Design COMD 3663 - Dynamic Web I: Web 2.0 Course Description Websites become alive and powerful as they incorporate

More information

CS 3030 Scripting Languages Syllabus

CS 3030 Scripting Languages Syllabus General Information CS 3030 Scripting Languages Semester: Summer 2013 Textbook: Location: Instructor Info: Website: None. We will use freely available resources from the Internet. Online Ted Cowan tedcowan@weber.edu

More information

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE. Wil DeBruyne, modified by Stan Pratt

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE. Wil DeBruyne, modified by Stan Pratt SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO Sault College COURSE OUTLINE COURSE TITLE: CODE NO. : SEMESTER: 1 or 2 PROGRAM: AUTHOR: Various Wil DeBruyne, modified by Stan Pratt

More information

ISATI 231: Windows Client (4 credits) Spring 2018 Mon, Tue, Wed, Thu, 13:10-14:40, MTB 105

ISATI 231: Windows Client (4 credits) Spring 2018 Mon, Tue, Wed, Thu, 13:10-14:40, MTB 105 INSTRUCTOR INFORMATION: ISATI 231: Windows Client (4 credits) Spring 2018 Mon, Tue, Wed, Thu, 13:10-14:40, MTB 105 Name: Joshua L. Rogers Office: Mechanical-Technical Building (MTB) 105A Tel: (208) 792-2817

More information

BCS Level 3 Award in Coding and Logic Syllabus QAN 603/0523/X

BCS Level 3 Award in Coding and Logic Syllabus QAN 603/0523/X Making IT good for society BCS Level 3 Award in Coding and Logic Syllabus QAN 603/0523/X Version 3.1 September 2017 This is a United Kingdom government regulated qualification which is administered and

More information

ERIE COMMUNITY COLLEGE COURSE OUTLINE. DA155 Operating Systems and Shell Scripting

ERIE COMMUNITY COLLEGE COURSE OUTLINE. DA155 Operating Systems and Shell Scripting October 2007 A. COURSE NUMBER AND TITLE: ERIE COMMUNITY COLLEGE COURSE OUTLINE DA155 Operating Systems and Shell Scripting B. CURRICULUM: Information Technology C. CATALOG DESCRIPTION An overview of the

More information

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO Sault College COURSE OUTLINE COURSE TITLE: Cisco (CCNA) Certification II CODE NO. : SEMESTER: 3 PROGRAM: AUTHOR: Computer Network

More information

Pellissippi State Community College Master Syllabus ACCESSIBLE WEB DESIGN AND COMPLIANCE WEB 2401

Pellissippi State Community College Master Syllabus ACCESSIBLE WEB DESIGN AND COMPLIANCE WEB 2401 Pellissippi State Community College Master Syllabus ACCESSIBLE WEB DESIGN AND COMPLIANCE WEB 2401 Class Hours: 3.0 Credit Hours: 3.0 Laboratory Hours: 0.0 Revised: Fall 2016 Catalog Course Description:

More information

Center of Excellence Digital & Information Technology

Center of Excellence Digital & Information Technology Center of Excellence Digital & Information Technology ITSC 1307 UNIX (Linux) Operation System I CRN 14442 Fall 2018 Distance Education - Eagle Online 16 weeks Instructor: Homied Asgary Website: http://learning.hccs.edu/faculty/homied.asgary

More information

Useful Unix Commands Cheat Sheet

Useful Unix Commands Cheat Sheet Useful Unix Commands Cheat Sheet The Chinese University of Hong Kong SIGSC Training (Fall 2016) FILE AND DIRECTORY pwd Return path to current directory. ls List directories and files here. ls dir List

More information

COWLEY COLLEGE & Area Vocational Technical School

COWLEY COLLEGE & Area Vocational Technical School COWLEY COLLEGE & Area Vocational Technical School COURSE PROCEDURE FOR Student Level: This course is open to students on the college level in either the freshman or sophomore year. Catalog Description:

More information

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS COSC 1320: INTRODUCTION TO C++ PROGRAMMING COMPUTER TECHNOLOGY & OFFICE ADMINISTRATION DEPARTMENT

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS COSC 1320: INTRODUCTION TO C++ PROGRAMMING COMPUTER TECHNOLOGY & OFFICE ADMINISTRATION DEPARTMENT BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS COSC 1320: INTRODUCTION TO C++ PROGRAMMING COMPUTER TECHNOLOGY & OFFICE ADMINISTRATION DEPARTMENT CATALOG DESCRIPTION COSC 1320 Introduction to C++ Programming.

More information

Introduction To. Barry Grant

Introduction To. Barry Grant Introduction To Barry Grant bjgrant@umich.edu http://thegrantlab.org Working with Unix How do we actually use Unix? Inspecting text files less - visualize a text file: use arrow keys page down/page up

More information

The Linux Command Line: A Complete Introduction, 1 st ed., by William E. Shotts, Jr., No Starch Press, 2012.

The Linux Command Line: A Complete Introduction, 1 st ed., by William E. Shotts, Jr., No Starch Press, 2012. Department of Mathematics and Computer Science Adelphi University Fall 2018 0145-275-001 Operating Systems Practicum Dr. R. M. Siegfried 407 Science (516)877-4482 http://home.adelphi.edu/~siegfried/cs271

More information

Introduction To Linux. Rob Thomas - ACRC

Introduction To Linux. Rob Thomas - ACRC Introduction To Linux Rob Thomas - ACRC What Is Linux A free Operating System based on UNIX (TM) An operating system originating at Bell Labs. circa 1969 in the USA More of this later... Why Linux? Free

More information

Nashville State Community College Computer and Engineering Technologies Division Computer Information Systems. Master Course Syllabus

Nashville State Community College Computer and Engineering Technologies Division Computer Information Systems. Master Course Syllabus Revised: 7-2-13 Nashville State Community College Computer and Engineering Technologies Division Computer Information Systems Master Course Syllabus CIS 2270 JAVA Application Development 3 Credits 2 Class

More information

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS. ITNW 1354: IMPLEMENTING AND SUPPORTING SERVERS Previously ITMC 1341 and then ITMT 1340

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS. ITNW 1354: IMPLEMENTING AND SUPPORTING SERVERS Previously ITMC 1341 and then ITMT 1340 BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS ITNW 1354: IMPLEMENTING AND SUPPORTING SERVERS Previously ITMC 1341 and then ITMT 1340 COMPUTER TECHNOLOGY & OFFICE ADMINISTRATION DEPARTMENT CATALOG DESCRIPTION

More information

Computer Science Department

Computer Science Department California State University, Dominguez Hills Computer Science Department Syllabus CS255 Dynamic Web Programming Dr. Jason Isaac Halasa Office Hours: MW 12:45-2:30 and 3:45-5:30 and by Appointment Office

More information

Course Outline. TERM EFFECTIVE: Fall 2016 CURRICULUM APPROVAL DATE: 11/23/2015

Course Outline. TERM EFFECTIVE: Fall 2016 CURRICULUM APPROVAL DATE: 11/23/2015 5055 Santa Teresa Blvd Gilroy, CA 95023 Course Outline COURSE: CSIS 49 DIVISION: 50 ALSO LISTED AS: TERM EFFECTIVE: Fall 2016 CURRICULUM APPROVAL DATE: 11/23/2015 SHORT TITLE: UNIX SHELL PROGRAM LONG TITLE:

More information

The University of Jordan. Accreditation & Quality Assurance Center. COURSE Syllabus

The University of Jordan. Accreditation & Quality Assurance Center. COURSE Syllabus The University of Jordan Accreditation & Quality Assurance Center COURSE Syllabus 1 Course title Introduction to Web Pages Development 2 Course number 807413 Credit hours (theory, practical) 3 3 Contact

More information

Scripting Languages Course 1. Diana Trandabăț

Scripting Languages Course 1. Diana Trandabăț Scripting Languages Course 1 Diana Trandabăț Master in Computational Linguistics - 1 st year 2017-2018 Today s lecture Introduction to scripting languages What is a script? What is a scripting language

More information

Table of contents. Our goal. Notes. Notes. Notes. Summer June 29, Our goal is to see how we can use Unix as a tool for developing programs

Table of contents. Our goal. Notes. Notes. Notes. Summer June 29, Our goal is to see how we can use Unix as a tool for developing programs Summer 2010 Department of Computer Science and Engineering York University Toronto June 29, 2010 1 / 36 Table of contents 1 2 3 4 2 / 36 Our goal Our goal is to see how we can use Unix as a tool for developing

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS AUDIO/VIDEO FOR THE WEB WEB 2120

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS AUDIO/VIDEO FOR THE WEB WEB 2120 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS AUDIO/VIDEO FOR THE WEB WEB 2120 Class Hours: 3.0 Credit Hours: 3.0 Laboratory Hours: 0.0 Revised: Fall 08 NOTE: This course is not designed

More information

Spring 2018 El Camino College E. Ambrosio. Course Syllabus

Spring 2018 El Camino College E. Ambrosio. Course Syllabus Course Syllabus Division: Mathematical Sciences Course Title: Computer Programming in Java Course #/Sections: CS 3/0127, 0128 Credit Hours: 4 Course Time/Room: Lecture: TTh 6:25 7:50 P.M./MBA 213 Lab:

More information

Steamfitter/Pipefitter Apprenticeship Year 2 PFIT 2 Trades Training. Program Outline

Steamfitter/Pipefitter Apprenticeship Year 2 PFIT 2 Trades Training. Program Outline Steamfitter/Pipefitter Apprenticeship Year 2 PFIT 2 Trades Training Program Outline PROGRAM IMPLEMENTATION DATE: February 2015 OUTLINE EFFECTIVE DATE: February 2015 PROGRAM OUTLINE REVIEW DATE: February

More information

KLS s Gogte Institute of Technology, Udyambag, Belagavi. CLO 1: To provide introduction to UNIX Operating System and its File System

KLS s Gogte Institute of Technology, Udyambag, Belagavi. CLO 1: To provide introduction to UNIX Operating System and its File System KLS s Gogte Institute of Technology, Udyambag, Belagavi Course Document Academic Year:2016-17 Department of CSE Course Title : UNIX Shell programming Credits: 4 Course Code :15CS33 L:T:P -3-1-0 Course

More information

School of Computing and Information Sciences

School of Computing and Information Sciences Course Title: Date: April 4, 009 Course Number: COP-45 Number of Credits: 3 Subject Area: Computer Systems Subject Area Coordinator: S. Masoud Sadjadi email: sadjadi@cs.fiu.edu Catalog Description: Unix

More information

Appendix F Course codes, descriptions, units, lecture/lab

Appendix F Course codes, descriptions, units, lecture/lab Appendix F Course codes, descriptions, units, lecture/lab CIS 003 Introduction to Microsoft Word Units: 1 Students will learn the basics of Windows and Microsoft Word. Specific topics covered include:

More information

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department COURSE: CST1201 Programming Fundamentals (2 class hours, 2 lab hours, 3 credits) Course Description: This course is an intensive

More information

B. Subject-specific skills B1. Problem solving skills: Supply the student with the ability to solve different problems related to the topics

B. Subject-specific skills B1. Problem solving skills: Supply the student with the ability to solve different problems related to the topics Zarqa University Faculty: Information Technology Department: Computer Science Course title: Programming LAB 1 (1501111) Instructor: Lecture s time: Semester: Office Hours: Course description: This introductory

More information

KOMAR UNIVERSITY OF SCIENCE AND TECHNOLOGY (KUST)

KOMAR UNIVERSITY OF SCIENCE AND TECHNOLOGY (KUST) Programming Concepts & Algorithms Course Syllabus Course Title Course Code Computer Department Pre-requisites Course Code Course Instructor Programming Concepts & Algorithms + lab CPE 405C Computer Department

More information

Qualification details

Qualification details Qualification details Title New Zealand Diploma in Web Development and Design (Level 5) Version 1 Qualification type Diploma Level 5 Credits 120 NZSCED 020115 Information Technology > Computer Science

More information

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO Sault College COURSE OUTLINE COURSE TITLE: Internet / Intranet / Extranet : SEMESTER: Five PROGRAM: AUTHOR: Computer Systems Support

More information

COURSE SYLLABUS AND INSTRUCTOR PLAN

COURSE SYLLABUS AND INSTRUCTOR PLAN WACO, TEXAS COURSE SYLLABUS AND INSTRUCTOR PLAN INTRODUCTION TO COMPUTING LAB COSCL 1301.11 Jaylene Pipkin SPRING 2012 Course Description: Provides a survey of microcomputer usages and applications. Includes

More information

Emergency Vehicle Operation FIRE 106 Fire Training Certification. Course Outline

Emergency Vehicle Operation FIRE 106 Fire Training Certification. Course Outline Emergency Vehicle Operation FIRE 106 Fire Training Certification Course Outline COURSE IMPLEMENTATION DATE: September 2015 OUTLINE EFFECTIVE DATE: September 2015 COURSE OUTLINE REVIEW DATE: April 2020

More information

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO. Databases and Spreadsheets

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO. Databases and Spreadsheets SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO Sault College COURSE OUTLINE COURSE TITLE: Databases and Spreadsheets CODE NO. : CSA102 SEMESTER: 2 PROGRAM: AUTHOR: All Computer

More information

ITCC111. Course Summary. Description. Objectives. Outline

ITCC111. Course Summary. Description. Objectives. Outline ITCC111 ST UDENT WARNING: This course syllabus is from a previous semester archive and serves only as a preparatory reference. Please use this syllabus as a reference only until the professor opens the

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS MICROSOFT NETWORKING I - WORKSTATION CST 2735

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS MICROSOFT NETWORKING I - WORKSTATION CST 2735 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS MICROSOFT NETWORKING I - WORKSTATION CST 2735 Class Hours: 3.0 Credit Hours: 4.0 Laboratory Hours: 3.0 Date Revised: Spring 00 NOTE: This course

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS 3D MODELING & ANIMATION VPT 2165

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS 3D MODELING & ANIMATION VPT 2165 PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS 3D MODELING & ANIMATION VPT 2165 Class Hours: 3.0 Credit Hours: 3.0 Laboratory Hours: 0.0 Revised: Fall 2017 Catalog Course Description A study of advanced

More information

CS 3030 Scripting Languages Syllabus

CS 3030 Scripting Languages Syllabus General Information CS 3030 Scripting Languages Semester: Fall 2017 Textbook: Location: Instructor Info: None. We will use freely available resources from the Internet. Online Ted Cowan tedcowan@weber.edu

More information

ISM 324: Information Systems Security Spring 2014

ISM 324: Information Systems Security Spring 2014 ISM 324: Information Systems Security Spring 2014 Instructor: Co-Instructor: Office: E-Mail: Phone: Office Hours: Jeffrey Wall Hamid Nemati 392 Bryan Building jdwall2@uncg.edu (email is the preferred method

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS LINUX SYSTEM ADMINISTRATION CSIT 2411

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS LINUX SYSTEM ADMINISTRATION CSIT 2411 PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS LINUX SYSTEM ADMINISTRATION CSIT 2411 Class Hours: 3.0 Credit Hours: 4.0 Laboratory Hours: 3.0 Revised: Spring 2010 Catalog Course Description: A study

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

Prerequisit. cies. Consortium. on Creating. interviews. In research, the. Standards. A. Software Program(s) 3. Web

Prerequisit. cies. Consortium. on Creating. interviews. In research, the. Standards. A. Software Program(s) 3. Web Web Design Tools (ITSE 1301) Credit: 3 semester credit hours (2 hours lecture, 2 hours lab) Prerequisit te/co-requisite: Course Description Designing and publishing Web documents according to World Wide

More information

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department COURSE: CST2307 Networking Fundamentals (2 class hours, 2 lab hours, 3 credits) Course Description: This course introduces

More information

CSCI 2132 Software Development. Lecture 5: File Permissions

CSCI 2132 Software Development. Lecture 5: File Permissions CSCI 2132 Software Development Lecture 5: File Permissions Instructor: Vlado Keselj Faculty of Computer Science Dalhousie University 14-Sep-2018 (5) CSCI 2132 1 Files and Directories Pathnames Previous

More information

ITCC112. Course Summary. Description. Objectives

ITCC112. Course Summary. Description. Objectives ITCC112 ST UDENT WARNING: This course syllabus is from a previous semester archive and serves only as a preparatory reference. Please use this syllabus as a reference only until the professor opens the

More information

Carpenter Foundation Program CARPE Trades Training. Program Outline

Carpenter Foundation Program CARPE Trades Training. Program Outline Carpenter Foundation Program CARPE Trades Training Program Outline PROGRAM IMPLEMENTATION DATE: November 2000 OUTLINE EFFECTIVE DATE: September 2017 PROGRAM OUTLINE REVIEW DATE: March 2022 GENERAL PROGRAM

More information

Big Sandy Community and Technical College. Course Syllabus

Big Sandy Community and Technical College. Course Syllabus Big Sandy Community and Technical College Course Syllabus PS Number: 49744 Semester: Fall Year: 2017 Faculty Name: Dr. Kathryn Miller Title: Professor Course Prefix and Number: CIT Course Credit Hours:

More information

Course Title: Network+/Networking Fundamentals. Course Section: CNS-101-I1. FORMAT: Online

Course Title: Network+/Networking Fundamentals. Course Section: CNS-101-I1. FORMAT: Online Course Title: Network+/Networking Fundamentals Course Section: CNS-101-I1 FORMAT: Online TIME FRAME: Start Date: 15 January 2018 End Date: 06 May 2018 CREDITS: 4 INSTRUCTOR: Carlos J. Garcia Office Hours:

More information