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

Size: px
Start display at page:

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

Transcription

1 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. CIP Introduction to computer programming using C++. Emphasis on the fundamentals of structured design with development, testing, implementation, and documentation. Includes language syntax, data and file structures, input/output devices, looping, data manipulation, and array processing. (3 SCH, 2 lecture, 2 lab) Required Skill Level: College-level reading and writing; Intermediate algebra level math (placement code 3). PREPARED BY: RECOMMENDED BY: RECOMMENDED BY: APPROVED: Wesley Scruggs, Professor Ron Bonnette, Division Chairman Jeff Detrick, Dean DATE: DATE: DATE: DATE: The Brazosport College District shall not discriminate against, or exclude from participation in any benefits or activities either on the staff or in the student body, any person on the grounds of sex, race, color, religion, national origin, age, or handicap.

2 This page left intentionally blank for printing purposes.

3 STUDENT EVALUATION BRAZOSPORT COLLEGE SYLLABUS COSC 1320 INTRODUCTION TO C++ PROGRAMMING COURSE EVALUATION A. Major exams will account for no more than 55% of the total grade. B. Class participation and lab assignments will account for no more than 20% of the total grade. C. The final exam will account for no more than 25% of the total grade. INSTRUCTOR EVALUATION A. Students will be given an opportunity to evaluate their instructor and the course content. B. The instructor will review and evaluate in terms of withdrawal rate. C. Final grades given will be reviewed in an effort to determine if a pattern of high or low grades exists. DEPARTMENT EVALUATION OF COURSE A. Faculty and the Division Chair will review student grades and withdrawal trends. B. Faculty and the Division Chair will review the Course Competencies and Perspectives Assessment.

4 BRAZOSPORT COLLEGE SYLLABUS COSC 1320 INTRODUCTION TO C++ PROGRAMMING COURSE CONTENT GENERAL GOALS/OBJECTIVES (* designates a CRUCIAL goal) 1. use a computer 2. use an editor 3. explain C++ coding and use of whitespace 4. explain program translation process 5. compile, link, and execute a C++ program 6. correct compilation and execution errors 7. code main() function 8. use comment statements ( // comments and /* comments */ ) 9. construct char, short, int, long, float, double, and logical variables 10. use continuation statements 11. debug C++ programs 12. write an algorithm 13. write complete C++ programs 14. write char, short, int, long, float, double, and logical declaration statements 15. use the cout statement 16. recognize or use the const or #define statement 17. use the #include <iostream> and #include <cstdio> header file statements 18. construct integer, float, long, double, character, string, and logical constants 19. identify relational (==,!=, <, <=, >, >=), arithmetic (+, -, *, /, %), increment (++) and decrement (--), the logical (&&,,!) operators 20. evaluate mixed-mode, integer, and float expressions 21. list the rules for formulating arithmetic expressions 22. write function prototypes 23. write C++ assignment statements

5 24. use input (cin/cin.get) and output (cout) statements 25. use the control character specifications (\n, \t, \\, \, \, \0, \a, \r, \f, \b) 26. use open and close statements for file input/output 27. create their own input files 28. write cin/cin.get, cout, and cin.getline statements 29. use for loops, do while, and while loops 30. understand the use of sizeof operator 31. use void and value-returning functions 32. use block, scope limitations, local and global variables 33. understand the use of const (constants) 34. understand the use of function declarations, function calls, and function definitions 35. use setw, endl, and set precision to control the number of decimals outputted 36. use case, switch, goto, labels, and other control statements 37. use the if, the if else, and nested if statements 38. be able to write programs using file input/output using #include <fstream> 39. write single dimension array programs

6 SPECIFIC GOALS/OBJECTIVES BRAZOSPORT COLLEGE SYLLABUS COSC 1320 INTRODUCTION TO C++ PROGRAMMING COURSE CONTENT 1. The student will use a computer, with Microsoft Visual C++ installed, to do his/her class work, delete and purge files created when compiling, linking, and executing his/her lab assignments, to obtain his/her assignments with regard to safety and careful use of equipment. The computer will be used to do at least eight C++ lab assignments. 2. The student will use an editor to enter, compile, debug, link and execute at least eight C++ lab assignments that will be assigned as part of the class requirements. 3. The student will not be allowed to use notes or their text when writing their lab assignments. The lab assignment will require the students to use whitespace and comments to make their programs easily read, debugged and maintained. The students will be graded on the use of comments and whitespace in their programs (lab assignments). Performance will be satisfactory if the student receives at least 70% on their lab assignment. 4. The student will be asked to know the program translation process (compile, link, and run) and identify the files generated with each step of the translation process. Performance will be satisfactory if the student can identify 70% of the program translation process and the explanation conforms to their text or to the explanation given by the instructor. 5. The student will be allowed references. The student will compile, link, and execute at least eight C++ programs given the problem definitions. Performance will be satisfactory if the student receives at least 70% and the output is accurate and agrees with the requirements set forth in the problem definition. 6. The student will be allowed to use the error reference provided upon compilation of the source program to remove compile time errors. Execution errors will be corrected so the correct results from the lab can be generated. The student will correct compilation and execution errors. Performance will be satisfactory if all errors are corrected before the program is submitted for grading. If the program is turned in with errors, the student will not receive a grade higher than 70%. 7. The student will be allowed references on the lab assignments, but on the exams the student will not be allowed references. The student will be asked to code the main function and possibly one or more functions. Performance will be satisfactory if the student submits the correctly coded main and function subprograms. The student will be asked to code the main function on at least two exams and at least eight C++ programs during the semester. The student will be given the problem definition. 8. The student will be able to use all references as he/she uses comment statements within each of the programs written during the semester. The comments may be identified with // before or after the C++ statement or the comment may be a long comment, where /* comment(s) */ is used. Usage of comments must be consistent with C++ language syntax and the requirements of the lab and test assignment. 9. The student will be able to use any references to construct character, short, int, long, float, double, and logical variables. Performance will be satisfactory if the student uses the appropriate variable type to input, process, or output the desired results in a form consistent with the problem statement.

7 10. The student will be allowed references when using continuation statements. Performance will be satisfactory if the student properly codes the lines needing to be continued on succeeding lines. Usage must meet the requirements by the C++ compiler. The student will use continuation statements when necessary as they write their C++ programs in class and on exams. The student will also be tested on the use of continuation statements on one of their written tests. 11. The student will debug C++ programs and their performance will be satisfactory if they are able to debug all the C++ programs they have written that contain logic or syntax errors. The student will also be required to properly debug statements and sections of code on at least two of their exams. The student's debugging is to help him/her be able to locate and correct all mistakes. 12. The student will be provided the problem statement for each of the labs and on each test where an algorithm is to be written. The student will write the algorithm and the student's algorithm will be satisfactory if it accomplishes the objective of the problem statement and produces the correct output. At least two tests will require the student to write an algorithm. 13. The student will write at least eight complete C++ programs during the semester demonstrating his/her knowledge of the C++ language, his/her ability to interpret compilation and execution errors, and to use on-line help for C++. The student's performance will be satisfactory if he/she receives a rating of 70% from the instructor. All programs are to be written in the stated time period or the student will lose 20 points for each week it is late. After two weeks, the lab will no longer be accepted. 14. The student will write declarative statements, when necessary, on his/her labs to declare the variables to the desired data types. The student will also be asked on one of their test to write declaration statements for integer, float, and character data. Performance will be satisfactory if the declaration statements are written correctly as asked by the instructor or if declaration statements are written correctly for the C++ compiler. 15. The student will use cout statements in at least five lab assignments and on at least one written examination. Performance will be satisfactory if the usage is consistent with the C++ rules and the current C++ textbook. The student will be allowed to use any references to write the lab assignments that will require the use of cout but will not be allowed any references on the examinations. 16. The student should be able to properly format, character and numeric data, before outputting the data to the screen or a file for their lab assignments. The set, left, right, and set precision statements and functions will be used in at least two of their lab assignments to format output. The student will be able to use their notes when properly outputting data. Performance will be satisfactory is their output is as directed in the lab assignment. 17. The student will be allowed references. The student will use the <iostream> and <cstdlib> header files, when required, in their labs. Performance will be satisfactory if the student successfully uses these header files according to the C++ rules and syntax. 18. The student will construct integer, float, long, double, character, string, and Boolean constants when necessary as required by their lab assignments and as required on each of the unit tests and Lab and/or Written Final Exam. Each program that requires constants will also require students to properly construct them. Performance will be satisfactory if the student receives a score of 70% on each lab and exam. 19. The student will identify relational, arithmetic, increment and decrement, and the logical operators so they can be properly used in test or lab applications. Performance will be satisfactory if the student can effectively use these operators on all tests and labs by scoring a 70% average on all exams and labs.

8 20. The student will evaluate mixed-mode, integer, and real expressions on labs and on exams. Performance will be satisfactory if on their first test the student receives 70% and if on labs their results correspond to the output desired. One of the tests given during the class will evaluate the student s ability to handle mixed-mode, integer, and real expressions. 21. The student will list the rules for formulating arithmetic expressions (Rules of Hierarchy). In addition to listing the rules the student will be asked to evaluate arithmetic expressions based on the use of these rules. Satisfactory performance will be determined by an exam. If the student receives 70% on that first exam, he/she then has mastered this performance-based objective. 22. The student will write value-returning and void functions as part of their eight labs and will write functions on at least four exams. Performance will be satisfactory if the student properly codes the function so it produces the correct results in their programs or on an exam. If the student successfully passes at least seven lab assignments with a grade higher than 70% and makes above a 70 on all exams, the student will have mastered this objective. 23. The student will be allowed references to write assignment statements in at least seven C++ lab assignments demonstrating his/her knowledge of the C++ programming language. On at least two exams the student will be asked to write assignment statements and will not be allowed to use any references. The student's performance will be satisfactory if he/she receives 70% on the lab and test assignment. 24. The student will use cin, cin.get, cin.getline, an input file statement to input values into their programs and will use either cout or output file statements to output data on at least six of the eight lab assignments. The student shall enter the input according to the problem definition. The printed report, according to the problem statement, will require the student to use formatted output. If the student receives an average of 70% on all the lab assignments, the student's performance will be satisfactory. 25. The student will use the following control characters, \n, \t, \\, \, \, \0, \a, \r, \f, and \b, when writing C++ programs in labs and on exams. Performance will be satisfactory if the lab and exam grades are above 70%. 26. The student will create their own input files given the problem definition and a text editor. Time is no limiting factor but accuracy is required. Performance will be satisfactory if the program successfully reads the input data correctly according to the requirements of the lab assignment. 27. The student will be allowed to use any references in writing cin, cin.get, cin.getline, and cout statements on at least two of their exams. Also, they will be required to use these in at least six of their lab assignments. These statements must be in accordance with the expected input/output of the problem statement. Performance will be satisfactory if the student receives at least 70% on each lab assignment requiring their use or if the student receives at least 70 on two of their exams. 28. The student will be allowed references while using the for, do, and while loops on at least four lab assignments. The student will not be able to use any references while taking a test on the use of these looping techniques. The student performance will be satisfactory if he/she receives at least 70% on each lab requiring the use of loops in addition to 70% or higher on the exam testing loops. 29. The student should recognize the importance of the size of operator. A program will be illustrated showing the use of this operator to show the size of char, short, int, long, float, and double. Performance will be satisfactory if the student scores at least 70% on their examination testing their knowledge of the storage requirements of these data types and the use of size of operator.

9 30. The student will use function subprograms, either void or value-returning, in all of their labs. The student will be required to use one or more of these on a test demonstrating their knowledge of functions. The student is encouraged to use functions throughout the course and all programs will require the use of at least one of the following: intrinsic (built-in) function, a void function, or a valuereturning function. Performance will be satisfactory if the student receives a 70% rating on each lab or test requiring the use of a function. 31. The student will be allowed references to use blocks when writing their lab assignments. On at least two exams students will be required to write blocks of code and identify values assigned to local and global variables. The student will not be allowed references on these written exams. The usage of the local and global variables must be consistent with C++ and the student will be given an exam to illustrate their understanding of local and global variables. Performance will be satisfactory if the student receives a 70% on each lab or test. 32. The student will not be allowed references. The student will be asked on one or more tests to use constants (string constants, numeric constants, and const). The student must use constants in their lab assignments. The use of constants must be consistent with the C++ syntax. Performance will be satisfactory if the student answers 70% of the questions regarding constants on his/her exam covering this subject and if a 70% is received on all lab assignments. 33. The student will write function declarations, function calls, and function definitions on at least four of their labs and will be tested on these concepts on at least two exams. Performance will be satisfactory if the student is able to write these statements correctly as outlined in their text or according to the C++ syntax. The students will be able to use any materials on lab assignments but will not be able to use any materials on the written exams. Satisfactory performance will be a 70% passing grade on the lab or test assignment. 34. The student will be allowed references on the lab assignments but not on the exams as they are required to use setw, endl, and set precision. The students must use these statements on at least five of their lab assignments. In addition, the students will be required to use these statements on two of the three unit tests to be given during the semester. The usage must be consistent with the C++ regulations. At least 70% on all labs and tests requiring the use of these statements will ensure satisfactory performance. 35. The student will be allowed references when asked to write conditional control statements (switch, case, goto and labels) on lab assignments. On the test examining the student's knowledge of these statements, he/she will not be allowed to use any references. The student will analyze and write these statements on an exam and demonstrate his/her knowledge of these topics. Performance will be satisfactory if the student uses these statements correctly in at least two labs, with a grade of 70% or better on these labs, and has a score above 70% on the exam covering control statements. 36. The student will use the if, the if else, and nested if statements in writing at least two labs. The student will also be tested over the use of these statements on at least two major exams covering if statements. The use of the if statement must be consistent with the C++ syntax. Satisfactory performance requires the student to make at least 70% on each lab requiring the use of an if statement and on the exams covering if statements. 37. The student will be asked to write at least one program that requires the use of file input/output. The student will also be tested over the use of file input, file output, and the use of <fstream> on at least two exams. The student must obey the C++ regulations outlined in his/her textbook or in C++ online Help. The student should make 70% on the test or lab to have successfully completed this objective.

10 38. The student shall demonstrate his/her ability to write one-dimensional array programs by writing at least two lab assignments, given the problem statement and record layouts. The student will also be required to write one-dimensional array coding segments on an Arrays Test. The student may use any reference materials in writing the labs. However, no reference materials will be allowed when taking the test covering one- and two-dimensional arrays. Performance will be satisfactory if the results are correct when using the proper array techniques and the student scores a minimum of 70% on the lab assignments and test on arrays.

11 1. Demonstrate debugging skills: BRAZOSPORT COLLEGE SYLLABUS COSC 1320 INTRODUCTION TO C++ PROGRAMMING LEARNING OUTCOMES Students demonstrate mastery on 8 labs and Test 1 and 2 with an average of 70% on these. 2. Demonstrate coding algorithms: Students demonstrate their algorithm skills on any two tests with a grade average of 70% on the two tests. 3. Demonstrate use of cin, cout, arithmetic statements, if statements, switch, case, and loops: Students demonstrate these skills on Test 1 with a skill level of 70% or higher. 4. Demonstrate the use of value returning and void functions: Students will demonstrate skills on Test 2 and the Final Exam with a 70% average. 5. Demonstrate the knowledge of input/output files: Students will demonstrate these skills by writing two lab assignments using file input and output, with an average of 70% or higher. 6. Demonstrate the use of arrays: Students will demonstrate their knowledge of arrays by writing two programs in lab and their average of these must be at least 70%. 7. Demonstrate mastery of the C++ programming language and concepts: Students must have an average of 70% or higher for their final grade in the course. Labs will be 20% of their grade; Exams will be 55%; and the Final will be 25% of their grade.

12 BRAZOSPORT COLLEGE SYLLABUS COSC 1320 INTRODUCTION TO C ++ PROGRAMMING Instructor: Wesley Scruggs Office: D.221 Office Phone: (979) wesley.scruggs@brazosport.edu Alt. Phone: (979) COURSE DESCRIPTION Introduction to computer programming using C++. Emphasis on the fundamentals of structured design with development, testing, implementation, and documentation. Includes language syntax, data and file structures, input/output devices, looping, data manipulation, array processing and files. This course will teach C++. Students will be using the Microsoft Visual C++ compiler to enter, compile, link, and execute their programs. CIP (3 SCH, 2 lecture, 2 lab) PREREQUISITES ITSE 1431 or consent of division chairman. TEXTBOOK OR COURSE MATERIAL INFORMATION Required Text: Starting Out with C++ from Control Structures to Objects; 8th Edition by Tony Gaddis. Pearson, Required course materials are available at the Brazosport College bookstore, on campus or online at A student of this institution is not under any obligation to purchase a textbook from the college bookstore. The same textbook is/may also be available from an independent retailer, including an online retailer. LAB REQUIREMENTS This course meets 4 hours a week for lab so the student can enter his/her C++ program using the Microsoft Visual Studio Integrated Development Editor. The student is required to use the editor for their lab assignments and for all tests. ATTENDANCE AND WITHDRAWAL POLICIES The student is expected to attend all classes, to be on time, and to read the text prior to class meetings. Each student is expected to spend at least 4 hours per week preparing for class. Attendance is critical in this class. Students will be dropped if they miss more than 20 % of the classes before the drop date. A student arriving late to class or leaving early will count as half an absence. Fall and Spring 15-week Semesters Class Meetings Maximum absences before being dropped One per week 2 Two per week 4 It is the student's responsibility to withdraw from a course if circumstances occur that could prevent the student from successfully completing that course. Students should notify instructor of decision to withdraw and must not expect nor assume the instructor will complete the paperwork for the student. The instructor will complete required paperwork only if the instructor decides to drop a student for cause. Failure to notify instructor of withdrawal could result in the student failing the course. Please note that changes in the Texas Education Code state that students enrolling for the first time in a Texas public institution of higher education in the fall of 2007 or after, will not be permitted to withdraw from more than a total of six courses (no minimum number of credit hours on each course) in which the student is officially enrolled during the student's period of undergraduate study at all such institutions (this includes any course a transfer student has dropped at another institution of higher education). See for more information.

13 COURSE REQUIREMENTS AND GRADING POLICY Determining factors for final evaluation and grading of student are: TESTING Unit Tests 55% Lab Assignments 20% Final Exam 25% 100% All tests will be announced at least one week in advance. There will be three exams. MAKE-UP POLICY If a student misses an exam, there is no make-up. The final exam will replace the missed exam. If a student misses more than one exam, the others will result in a grade of zero. For labs, students will have at least two weeks to turn in their lab assignments. After the due date, the students will lose 20 points for the first week they are late and 40 points for the second week. After two weeks, the lab assignment will not be accepted and the student will receive a zero. STUDENT RESPONSIBILITIES The student is expected to attend classes, be on time, and read the text prior to class meetings. Each student is expected to spend at least four hours per week preparing for class. They may also have to spend additional hours on their labs outside of class to have the labs ready by their due date. Students are also expected to take care of the equipment in the classroom. PLEASE DO NOT BRING FOOD, DRINKS, OR UNAUTHORIZED PERSONS INTO THE CLASSROOM. PROJECTS, ASSIGNMENTS, PORTFOLIOS, SERVICE LEARNING, INTERNSHIPS, ETC. Each student will be expected to write at least eight labs using the Microsoft Visual C++ Integrated Development editor. SCANS COMPETENCIES The Secretary's Commission on Achieving Necessary Skills (SCANS) identified competencies in the areas of Resources, Interpersonal, Information, Systems, and Technology; and foundation skills in the areas of Basic Skills, Thinking Skills, and Personal Qualities. This course is part of a program in which each of these competencies and skills are integrated. For application of specific SCANS competencies and skills in this course, see Addendum A. ACADEMIC HONESTY Brazosport College assumes that students eligible to perform on the college level are familiar with the ordinary rules governing proper conduct including academic honesty. The principle of academic honesty is that all work presented by you is yours alone. Academic dishonesty, including, but not limited to, cheating, plagiarism, and collusion shall be treated appropriately. Please refer to the Brazosport College Student Guide for more information. This is available online at (click on the link found on the right side of the homepage). STUDENTS WITH DISABILITIES Brazosport College is committed to providing equal education opportunities to every student. Brazosport College offers services for individuals with special needs and capabilities including counseling, tutoring, equipment, and software. Please contact the Special Populations Counselor at (979) for further information.

14 OTHER STUDENT SERVICES INFORMATION Information about the Brazosport College Library is available at or by calling (979) Information about study skills and tutoring for math, reading, writing, biology, chemistry, and other subjects is available in the Learning Assistance Center (LAC).(See or call (979) ) To contact the Computer Technology & Office Administration Department, call (979) or (979) Student Services provides assistance in the following: Counseling and Advising (979) Financial Aid (979) Student Activities (979) To reach the Information Technology Department for computer, , or other technical assistance, call the Helpdesk at (979)

15 ADDENDUM A SCANS COMPETENCIES COSC INTRODUCTION TO C++ PROGRAMMING Competency Reference Application 1. Resource Students are required to use a computer and editor to enter their C++ programs. They will also be required to compile, link and execute their programs using Time Management, the proper commands and syntax. The students will be required to turn in the labs on the appropriate due date. If the lab is late, 20 points will be deducted Facilities/Materials, from their grade each week the lab is late. After two weeks, the lab will not be accepted. The student will receive a zero on that lab. Human Resources 2. Interpersonal As students debug their programs, they are asked to work with others in finding Leadership, and locating their mistakes. Part. as Team Member, Works with Diversity 3. Information This entire course requires students to acquire their output (results), analyze Acquiring, them for correctness, and if necessary, return to the computer to correct their Organizing, mistakes in programming. Interpreting 4. Systems, Understanding Students will correct compilation and execution errors, code new units, debug Organizational Systems, C++ programs. Technological Systems, Social Systems 5. Technology Students will be required to use a computer and editor to write C++ programs, Selecting, to do his/her class work, delete and purge files. The computer will be Applying, used in at least eight C++ lab assignments. Maintaining 6. Basic Skills The students are required to read the text, write C++ programs using Reading, Writing, arithmetic formulas, functions, and header files throughout the course. Mathematics, Speaking, Listening 7. Thinking Skills Students will write algorithms, complete C++ programs, use formatted Decision Making, input and output, and think through many other objectives. Problem Solving, Learning Techniques 8. Personal Qualities This is implemented in course syllabus under student contributions - the student Responsibility, is expected to attend all classes; to be on time; and to read the text prior to class. Sociability, Integrity/Honesty

16 ITSE 1407/COSC Introduction to C++ Programming Weekly Schedule Instructor: Wesley Scruggs Phone: Office: D-203 Note: This is a tentative schedule and may change, especially test dates! Week Lecture Lab 1 Chapter 1 Introduction to Computers & Programming, Visual Studio Work Lab 1 - due next week at the end of your last class 2 Chapter 2 - Introduction to C++ Lab 2 Assign it due next week at end of last class 3 Chapter 2 - Introduction to C++ Lab 2 Due Lab 3 Assigned 4 Chapter 3 Expressions and Interactivity (Input / Output / File Input and Output) Lab 3 Due Lab 4 Assigned (chapter 3) 5 Chapter 3 Expressions and Interactivity Lab 4 Due (Input / Output / File Input and Output) 6 Chapter 4 Making Decisions Chapter 5 Loops & Files Lab 5 Assigned Test 1 Theory & Hands-On 7 Test 1 (Ch 1-5) Chapter 6 Functions Lab 5 Due Lab 6 Assigned 8 Chapter 7 Arrays Lab 6 Due Lab 7 Assigned 9 Chapter 8 Searching and Sorting Arrays Lab 7 Due Lab 8 Assigned 10 Test 2 (Ch 6-8) Hands On Test 11 Chapter 9 Pointers Lab 8 Due Lab 9 Assigned 12 Chapter 10 Characters, C-Strings, and the String Class 13 Chapter 11 Structured Data Lab 10 Due 14 Chapter 11 Structured Data Lab Final 15 Final Exams Scheduled Lab 9 Due Lab 10 Assigned There will be no make-up exams. If you miss an exam, your final will count as the missed exam. Miss 2 exams and the second one is counted as a zero.

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

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

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

Art 645 Introduction to Web Site Design Los Angeles City College

Art 645 Introduction to Web Site Design Los Angeles City College Art 645 Introduction to Web Site Design Los Angeles City College Course Syllabus Spring 2018 Weekly Schedule 12131 LEC TTh 12:45 pm - 1:35 pm Chem 210 12150 LAB TTh 1:45 pm - 3:00 pm Chem 210 Office Hours

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

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

SYLLABUS. Departmental Syllabus. Structured Query Language (SQL)

SYLLABUS. Departmental Syllabus. Structured Query Language (SQL) SYLLABUS DATE OF LAST REVIEW: 02/2013 CIP CODE: 11.0901 SEMESTER: COURSE TITLE: COURSE NUMBER: Structured Query Language (SQL) CIST0151 CREDIT HOURS: 3 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE:

More information

Syllabus COSC-051-x - Computer Science I Fall Office Hours: Daily hours will be entered on Course calendar (or by appointment)

Syllabus COSC-051-x - Computer Science I Fall Office Hours: Daily hours will be entered on Course calendar (or by appointment) Syllabus COSC-051-x - Computer Science I Fall 2018 Instructor: Jeremy Bolton, Ph.D. Asst Teaching Professor Department of Computer Science Office: TBD (see Course calendar for office hours) Email: jeremy.bolton@georgetown.edu

More information

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO. Sault College COURSE OUTLINE CODE NO. : CSD100 SEMESTER: 1

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO. Sault College COURSE OUTLINE CODE NO. : CSD100 SEMESTER: 1 SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO Sault College COURSE OUTLINE COURSE TITLE: CODE NO. : SEMESTER: 1 PROGRAM: AUTHOR: ALL COMPUTER STUDIES PROGRAMS Dennis Ochoski DATE:

More information

WAYLAND BAPTIST UNIVERSITY VIRTUAL CAMPUS SCHOOL OF BUSINESS SYLLABUS

WAYLAND BAPTIST UNIVERSITY VIRTUAL CAMPUS SCHOOL OF BUSINESS SYLLABUS WAYLAND BAPTIST UNIVERSITY VIRTUAL CAMPUS SCHOOL OF BUSINESS SYLLABUS 1. Mission Statement: Wayland Baptist University exists to educate students in an academically challenging, learning-focused and distinctively

More information

CENTRAL TEXAS COLLEGE COSC 1315 INTRODUCTION TO COMPUTER PROGRAMMING. Semester Hours Credit: 3 INSTRUCTOR: OFFICE HOURS:

CENTRAL TEXAS COLLEGE COSC 1315 INTRODUCTION TO COMPUTER PROGRAMMING. Semester Hours Credit: 3 INSTRUCTOR: OFFICE HOURS: CENTRAL TEXAS COLLEGE COSC 1315 INTRODUCTION TO COMPUTER PROGRAMMING Semester Hours Credit: 3 INSTRUCTOR: OFFICE HOURS: I. INTRODUCTION A. This course presents an introduction to computer programming for

More information

ITCC Cisco Exploration 1: Networking Fundamentals

ITCC Cisco Exploration 1: Networking Fundamentals Computer Science Technology Department Houston Community College System Department Website: http://csci.hccs.cc.tx.us CRN: 35007 Semester: Fall 2014 CAMPUS: Central Campus DAY/TIME: Thu 6pm -10pm Room:

More information

ITSY Information Technology Security Course Syllabus Spring 2018

ITSY Information Technology Security Course Syllabus Spring 2018 ITSY 1342 - Information Technology Security Course Syllabus Spring 2018 Instructor Course Reference Number (CRN) Course Description: Name: Fidelis Ngang Tel: 713-718-5552 Office: Spring Branch, Room 900L

More information

Computer Science Technology Department

Computer Science Technology Department Computer Science Technology Department Houston Community College Department Phone Number: ab Houston Community College ITMT 1370 Windows Client Operating System - Windows 10 Course Syllabus Summer 2017

More information

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR GRPH 1419 BINDERY AND FINISHING OPERATIONS

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR GRPH 1419 BINDERY AND FINISHING OPERATIONS I. INTRODUCTION CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR GRPH 1419 BINDERY AND FINISHING OPERATIONS SEMESTER HOURS CREDIT: 4 CONTRACT HOURS: 96 INSTRUCTOR: OFFICE HOURS: A. An

More information

You must pass the final exam to pass the course.

You must pass the final exam to pass the course. Computer Science Technology Department Houston Community College System Department Website: http://csci.hccs.cc.tx.us CRN: 46876 978-1-4239-0146-4 1-4239-0146-0 Semester: Fall 2010 Campus and Room: Stafford

More information

Computer Science Technology Department

Computer Science Technology Department Computer Science Technology Department Houston Community College Department Phone Number: 713-718-6776 Houston Community College ITMT 2373 - Configuring Advanced Windows Server 2012 Services Course Syllabus

More information

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR GRPH 1305 INTRODUCTION TO GRAPHIC ARTS AND PRINTING SEMESTER HOURS CREDIT: 4

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR GRPH 1305 INTRODUCTION TO GRAPHIC ARTS AND PRINTING SEMESTER HOURS CREDIT: 4 I. INTRODUCTION CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR GRPH 1305 INTRODUCTION TO GRAPHIC ARTS AND PRINTING SEMESTER HOURS CREDIT: 4 A. A study of the graphic arts industry,

More information

CENTRAL TEXAS COLLEGE ITCC 1414 CCNA 1: Introduction to Networks. Semester Hours Credit: 4

CENTRAL TEXAS COLLEGE ITCC 1414 CCNA 1: Introduction to Networks. Semester Hours Credit: 4 CENTRAL TEXAS COLLEGE ITCC 1414 CCNA 1: Introduction to Networks INSTRUCTOR: OFFICE HOURS: Semester Hours Credit: 4 I. INTRODUCTION A. This course introduces the architecture, structure, functions, components,

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

SYLLABUS. Departmental Syllabus

SYLLABUS. Departmental Syllabus SYLLABUS DATE OF LAST REVIEW: 02/2013 CIP CODE: 11.0901 SEMESTER: COURSE TITLE: COURSE NUMBER: SQL Server CIST-0226 CREDIT HOURS: 4 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE: EMAIL: PREREQUISITE(S):

More information

CISN 340 Data Communication and Networking Fundamentals Fall 2012 (Hybrid)

CISN 340 Data Communication and Networking Fundamentals Fall 2012 (Hybrid) CISN 340 Data Communication and Networking Fundamentals Fall 2012 (Hybrid) Instructor: Kevin M. Anderson, MBA, CCAI, MCSE, MCDBA, Office Phone: (916) 650-2926 CNE, LCP, CIW Associate, Security+, N +, A

More information

CSCE 206: Structured Programming in C

CSCE 206: Structured Programming in C CSCE 206: Structured Programming in C Instructor: Vijay Rajanna Office: E-mail: Office Hours: Teague Bld. Room 330H vijayrajanna@tamu.edu M-W: 1:30 pm to 3:30 pm and by appointment. Teaching Assistant:

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

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

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

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD Course Outline Routing and Switching Essentials [CISCO 2] ISS 112

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD Course Outline Routing and Switching Essentials [CISCO 2] ISS 112 Cisco Systems Cisco Academy HARFORD COMMUNITY COLLEGE 40 Thomas Run Road Bel Air, MD 205 Course Outline Routing and Switching Essentials [CISCO 2] ISS 2 COURSE NUMBER: ISS 2 COURSE NAME: Routing and Switching

More information

MWF 9:00-9:50AM & 12:00-12:50PM (ET)

MWF 9:00-9:50AM & 12:00-12:50PM (ET) Department of Mathematics and Computer Science Adelphi University Fall 2013 0145-443-001 Database Management Systems Dr. R. M. Siegfried 214 Post Hall (516)877-4482 siegfrie@adelphi.edu Office Hours Course

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

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

SYLLABUS. Departmental Syllabus. Service and Support CIST Departmental Syllabus. Departmental Syllabus. Departmental Syllabus

SYLLABUS. Departmental Syllabus. Service and Support CIST Departmental Syllabus. Departmental Syllabus. Departmental Syllabus SYLLABUS DATE OF LAST REVIEW: 02/2013 CIP CODE: 11.0901 SEMESTER: COURSE TITLE: COURSE NUMBER: Service and Support CIST-0220 CREDIT HOURS: 4 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE: EMAIL:

More information

Del Mar College Master Course Syllabus. UNIX System Administration Course Number: ITSC1358

Del Mar College Master Course Syllabus. UNIX System Administration Course Number: ITSC1358 Del Mar College Master Course Syllabus UNIX System Administration Course Number: ITSC1358 College Year: 2010 Professor Name: David Hattox Semester: Fall Office Location: VB124 Phone Contact: 698-1112 DMC

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

ab Houston Community College

ab Houston Community College Computer Science Technology Department ab Houston Community College ITNW 1313 Computer Virtualization Course Syllabus Instructor Course Reference Number (CRN) Course Description: Course Prerequisite(s)

More information

SYLLABUS. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus

SYLLABUS. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus SYLLABUS DATE OF LAST REVIEW: 11/6/2018 CIP CODE: 11.0801 SEMESTER: COURSE TITLE: COURSE NUMBER: JavaScript CIST0152 CREDIT HOURS: 3 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE: EMAIL: KCKCC issued

More information

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR WLDG 2453 ADVANCED PIPE WELDING SEMESTER HOURS CREDIT: 4

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR WLDG 2453 ADVANCED PIPE WELDING SEMESTER HOURS CREDIT: 4 I. INTRODUCTION CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR WLDG 2453 ADVANCED PIPE WELDING SEMESTER HOURS CREDIT: 4 A. Advanced topics involving welding of pipe using the shielded

More information

CENTRAL TEXAS COLLEGE ITCC 1440 CCNA 2: Routing and Switching Essentials. Semester Hours Credit: 4

CENTRAL TEXAS COLLEGE ITCC 1440 CCNA 2: Routing and Switching Essentials. Semester Hours Credit: 4 CENTRAL TEXAS COLLEGE ITCC 1440 CCNA 2: Routing and Switching Essentials INSTRUCTOR: OFFICE HOURS: Semester Hours Credit: 4 I. INTRODUCTION A. Describes the architecture, components, and basic operation

More information

SYLLABUS. CODE: NETW 243 TITLE: Computer Repair & Maintenance. DIVISION: Business and Technology DEPARTMENT: Engineering & Technology

SYLLABUS. CODE: NETW 243 TITLE: Computer Repair & Maintenance. DIVISION: Business and Technology DEPARTMENT: Engineering & Technology CODE: NETW 243 TITLE: Computer Repair & Maintenance DIVISION: Business and Technology DEPARTMENT: Engineering & Technology COURSE DESCRIPTION: This course provides students with the knowledge and skills

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

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR DEMR 1449 DIESEL ENGINES II SEMESTER HOURS CREDIT: 4

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR DEMR 1449 DIESEL ENGINES II SEMESTER HOURS CREDIT: 4 I. INTRODUCTION CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR DEMR 1449 DIESEL ENGINES II SEMESTER HOURS CREDIT: 4 A. This course provides an in-depth coverage of disassembling repair,

More information

COURSE NUMBER: ISS 214 COURSE NAME: Connecting Networks - Cisco 4 SEMESTER CREDIT HOURS: 4. https://www.netacad.com/

COURSE NUMBER: ISS 214 COURSE NAME: Connecting Networks - Cisco 4 SEMESTER CREDIT HOURS: 4. https://www.netacad.com/ HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline Connecting Networks [CISCO 4] COURSE NUMBER: COURSE NAME: Connecting Networks - 4 DIVISION: Business, Computing & Applied

More information

SYLLABUS. Departmental Syllabus. HTML Web Page Development. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus

SYLLABUS. Departmental Syllabus. HTML Web Page Development. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus SYLLABUS DATE OF LAST REVIEW: 11/6/2018 CIP CODE: 11.0801 SEMESTER: COURSE TITLE: COURSE NUMBER: HTML Web Page Development CIST-0137 CREDIT HOURS: 3 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE:

More information

CS 200, Section 1, Programming I, Fall 2017 College of Arts & Sciences Syllabus

CS 200, Section 1, Programming I, Fall 2017 College of Arts & Sciences Syllabus Northeastern Illinois University CS 200, Section 1, Programming I, Fall 2017 Syllabus, Page 1 of 7 CS 200, Section 1, Programming I, Fall 2017 College of Arts & Sciences Syllabus COURSE INFORMATION: Credit

More information

Certification. What: Who: Where:

Certification. What: Who: Where: Certification What: Certification is a process by which the Wisconsin Technical College System Office evaluates the occupational, academic, and teaching experience of district employees to determine his/her

More information

Computer Science Technology Department

Computer Science Technology Department Computer Science Technology Department Houston Community College Department Phone Number: ab Houston Community College ITMT 2301 - Windows Server 2008 Network Infrastructure Configuration Administering

More information

CS/SE 153 Concepts of Compiler Design

CS/SE 153 Concepts of Compiler Design San José State University Department of Computer Science CS/SE 153 Concepts of Compiler Design Section 1 Fall 2018 Course and Contact Information Instructor: Ron Mak Office Location: ENG 250 Email: ron.mak@sjsu.edu

More information

Marshall University MTH 100 Syllabus

Marshall University MTH 100 Syllabus Marshall University MTH 100 Syllabus Course Title/Number Preparation for College Mathematics A MTH 100 Semester/Year Spring 2016 Section/CRN 208 / 3975 Days/Time TR 12:30 1:45 PM Location SH 621 Instructor

More information

SYLLABUS. Departmental Syllabus. Modern Publication Design JOUR0180. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus

SYLLABUS. Departmental Syllabus. Modern Publication Design JOUR0180. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus DATE OF LAST REVIEW: 02/2013 CIP CODE: 10.0303 SYLLABUS SEMESTER: COURSE TITLE: COURSE NUMBER: Modern Publication Design JOUR0180 CREDIT HOURS: 3 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE: EMAIL:

More information

ESET 349 Microcontroller Architecture, Fall 2018

ESET 349 Microcontroller Architecture, Fall 2018 ESET 349 Microcontroller Architecture, Fall 2018 Syllabus Contact Information: Professor: Dr. Byul Hur Office: 008 Fermier Telephone: (979) 845-5195 FAX: E-mail: byulmail@tamu.edu Web: rftestgroup.tamu.edu

More information

Midland College Syllabus. ITNW 2413 Networking Hardware

Midland College Syllabus. ITNW 2413 Networking Hardware Midland College Syllabus ITNW 2413 Networking Hardware Course Description: Exploration of hardware devices including cables, servers, and workstations, network connectivity devices and uninterruptible

More information

ITS310: Introduction to Computer Based Systems Credit Hours: 3

ITS310: Introduction to Computer Based Systems Credit Hours: 3 ITS310: Introduction to Computer Based Systems Credit Hours: 3 Contact Hours: This is a 3 credit course, offered in accelerated format. This means that 16 weeks of material is covered in 8 weeks. The exact

More information

CMPE 152 Compiler Design

CMPE 152 Compiler Design San José State University Department of Computer Engineering CMPE 152 Compiler Design Course and contact information Instructor: Ron Mak Office Location: ENG 250 Email: Website: Office Hours: Section 4

More information

SYLLABUS. Departmental Syllabus CIST Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus

SYLLABUS. Departmental Syllabus CIST Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus SYLLABUS DATE OF LAST REVIEW: 02/2013 CIP CODE: 11.0901 SEMESTER: COURSE TITLE: Operating System Security (Windows 2008 Server) COURSE NUMBER: CIST-0254 CREDIT HOURS: 4 INSTRUCTOR: OFFICE LOCATION: OFFICE

More information

Introduction to Computers & Their Use

Introduction to Computers & Their Use CSIT 901 #0698 Room: CE-225 Tues & Thurs 9:35-11:00 am Instructor: Mary-Jo Apigo apigomj@wlac.edu The best way to communicate with me is through the Private Message feature in Etudes. Office Hours (HLRC-315):

More information

San José State University Computer Science Department CS49J, Section 3, Programming in Java, Fall 2015

San José State University Computer Science Department CS49J, Section 3, Programming in Java, Fall 2015 Course and Contact Information San José State University Computer Science Department CS49J, Section 3, Programming in Java, Fall 2015 Instructor: Aikaterini Potika Office Location: MacQuarrie Hall 215

More information

CENTRAL TEXAS COLLEGE ITCC 2412 CCNA 3: Scaling Networks. Semester Hours Credit: 4

CENTRAL TEXAS COLLEGE ITCC 2412 CCNA 3: Scaling Networks. Semester Hours Credit: 4 INSTRUCTOR: OFFICE HOURS: CENTRAL TEXAS COLLEGE ITCC 2412 CCNA 3: Scaling Networks Semester Hours Credit: 4 I. INTRODUCTION A. This course describes the architecture, components, and operations of routers

More information

CMPE 152 Compiler Design

CMPE 152 Compiler Design San José State University Department of Computer Engineering CMPE 152 Compiler Design Section 1 (Class) Sections 2 and 3 (s) Fall 2018 Course and Contact Information Instructor: Ron Mak Office Location:

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

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS 3D MODELING & ANIMATION CGT 2160

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS 3D MODELING & ANIMATION CGT 2160 PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS 3D MODELING & ANIMATION CGT 2160 Class Hours: 3.0 Credit Hours: 3.0 Lab Hours: 0.0 Revised: Spring 2011 NOTE: This course is not designed for transfer

More information

CS 241 Data Organization using C

CS 241 Data Organization using C CS 241 Data Organization using C Fall 2018 Instructor Name: Dr. Marie Vasek Contact: Private message me on the course Piazza page. Office: Farris 2120 Office Hours: Tuesday 2-4pm and Thursday 9:30-11am

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

San José State University Computer Science Department CS157A: Introduction to Database Management Systems Sections 5 and 6, Fall 2015

San José State University Computer Science Department CS157A: Introduction to Database Management Systems Sections 5 and 6, Fall 2015 San José State University Computer Science Department CS157A: Introduction to Database Management Systems Sections 5 and 6, Fall 2015 Course and Contact Information Instructor: Ron Gutman Office Location:

More information

CENTRAL TEXAS COLLEGE COSC 1337 PROGRAMMING FUNDAMENTALS II. Semester Hours Credit: 3

CENTRAL TEXAS COLLEGE COSC 1337 PROGRAMMING FUNDAMENTALS II. Semester Hours Credit: 3 CENTRAL TEXAS COLLEGE COSC 1337 PROGRAMMING FUNDAMENTALS II Semester Hours Credit: 3 INSTRUCTOR: OFFICE HOURS: I. INTRODUCTION A. This course focuses on the object-oriented programming paradigm, emphasizing

More information

IT-2670: C/C++ PROGRAMMING LANGUAGE

IT-2670: C/C++ PROGRAMMING LANGUAGE IT-2670: C/C++ Programming Language 1 IT-2670: C/C++ PROGRAMMING LANGUAGE Cuyahoga Community College Viewing:IT-2670 : C/C++ Programming Language Board of Trustees: 2015-05-28 Academic Term: Fall 2018

More information

CMPE 152 Compiler Design

CMPE 152 Compiler Design San José State University Department of Computer Engineering CMPE 152 Compiler Design Section 1 (Class) Sections 2 and 3 (Labs) Spring 2019 Course and Contact Information Instructor: Ron Mak Office Location:

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

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR GRPH 1459 VECTOR GRAPHICS FOR PRODUCTION SEMESTER HOURS CREDIT: 4

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR GRPH 1459 VECTOR GRAPHICS FOR PRODUCTION SEMESTER HOURS CREDIT: 4 CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR GRPH 1459 VECTOR GRAPHICS FOR PRODUCTION SEMESTER HOURS CREDIT: 4 INTRODUCTION A. A study and use of vector graphics for production.

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

SYLLABUS DEPARTMENTAL SYLLABUS. Laptops and Mobile Devices CRTE0108 DEPARTMENTAL SYLLABUS DEPARTMENTAL SYLLABUS DEPARTMENTAL SYLLABUS

SYLLABUS DEPARTMENTAL SYLLABUS. Laptops and Mobile Devices CRTE0108 DEPARTMENTAL SYLLABUS DEPARTMENTAL SYLLABUS DEPARTMENTAL SYLLABUS SYLLABUS DATE OF LAST REVIEW: 02/2015 CIP CODE: 11.1006 SEMESTER: COURSE TITLE: COURSE NUMBER: Laptops and Mobile Devices CRTE0108 CREDIT HOURS: 3 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE:

More information

HOUSTON COMMUNITY COLLEGE BUSINESS TECHNOLOGY NORTHEAST COLLEGE-NORTHLINE LOCATION COURSE SYLLABUS FALL 2011 COMPUTER APPLICATION I POFI 1301

HOUSTON COMMUNITY COLLEGE BUSINESS TECHNOLOGY NORTHEAST COLLEGE-NORTHLINE LOCATION COURSE SYLLABUS FALL 2011 COMPUTER APPLICATION I POFI 1301 HOUSTON COMMUNITY COLLEGE BUSINESS TECHNOLOGY NORTHEAST COLLEGE-NORTHLINE LOCATION Instructor: Marva Taylor Room: 313 Phone No: 713-718-8000 Email: marva.taylor@hccs.edu Office Hours: By appointment COURSE

More information

COWLEY COLLEGE & Area Vocational Technical School

COWLEY COLLEGE & Area Vocational Technical School COWLEY COLLEGE & Area Vocational Technical School COURSE PROCEDURE FOR INTRODUCTION TO SQL CIS1902 1 Credit Hour Student Level: This course is open to students on the college level in either Freshman or

More information

Computer Science Technology Department

Computer Science Technology Department Computer Science Technology Department Houston Community College Department Phone Number: ab Houston Community College ITSC 1309 Integrated Software Applications I Course Syllabus Instructor Course Reference

More information

GET 433 Course Syllabus Spring 2017

GET 433 Course Syllabus Spring 2017 Instructor: Doug Taber Telephone: 315-558-2359 Email: pdtaber@syr.edu Office: Hinds Hall 239 Location: Hinds 013 Day: Tues / Thurs Time: 8 AM to 9:20 AM Office Hours: TBA Course Overview GET 433 Enterprise

More information

Langara College Spring archived

Langara College Spring archived 1 of 7 10/23/07 2:09 PM COMPUTING SCIENCE AND INFORMATION SYSTEMS DEPARTMENT COMPUTING SCIENCE AND INFORMATION SYSTEMS 1300 Systems Analysis & Design (3.0 credits) COURSE OUTLINE Spring 2008 Section 088

More information

CS/SE 153 Concepts of Compiler Design

CS/SE 153 Concepts of Compiler Design San José State University Department of Computer Science CS/SE 153 Concepts of Compiler Design Course and Contact Information Instructor: Ron Mak Office Location: ENG 250 Email: Website: Office Hours:

More information

ISO LEAD AUDITOR TRAINING

ISO LEAD AUDITOR TRAINING FINAL CERTIFICATION AWARDED BY PECB CANADA ISO 22301 LEAD AUDITOR TRAINING & CERTIFICATION (Business Continuity Management) Master the Audit of Business Continuity Management System (BCMS) based on ISO

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS ROUTING/SWITCH CONFIGURATION CSIT 2750

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS ROUTING/SWITCH CONFIGURATION CSIT 2750 PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS ROUTING/SWITCH CONFIGURATION CSIT 2750 Class Hours: 3.0 Credit Hours: 4.0 Laboratory Hours: 3.0 Revised: Fall 09 Catalog Course Description: This course

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

Langara College Spring archived

Langara College Spring archived 1 of 7 11/23/2006 1:29 PM COMPUTING SCIENCE AND INFORMATION SYSTEMS DEPARTMENT COMPUTING SCIENCE AND INFORMATION SYSTEMS 1300 Systems Analysis & Design (3.0 credits) COURSE OUTLINE Spring 2007 Section

More information

COURSE OUTLINE. IST 253 Database Concept 3 Course Number Course Title Credits

COURSE OUTLINE. IST 253 Database Concept 3 Course Number Course Title Credits COURSE OUTLINE IST 253 Database Concept 3 Course Number Course Title Credits 2 2 N/A N/A 15 Class or Laboratory Clinical or Studio Practicum, Course Length Lecture Work Hours Hours Co-op, Internship (15

More information

Survey of Programming Languages Dr. R. M. Siegfried 407 Science (516) (not for homework submission)

Survey of Programming Languages Dr. R. M. Siegfried 407 Science (516) (not for homework submission) Department of Mathematics and Computer Science Adelphi University Fall 2017 0145-270-002 Survey of Programming Languages Dr. R. M. Siegfried 407 Science (516)877-4482 siegfrie@adelphi.edu (not for homework

More information

San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1, 2, and 3, Spring 2018

San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1, 2, and 3, Spring 2018 San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1, 2, and 3, Spring 2018 Course and Contact Information Instructor: Suneuy Kim Office

More information

BOSTON UNIVERSITY Metropolitan College MET CS342 Data Structures with Java Dr. V.Shtern (Fall 2011) Course Syllabus

BOSTON UNIVERSITY Metropolitan College MET CS342 Data Structures with Java Dr. V.Shtern (Fall 2011) Course Syllabus BOSTON UNIVERSITY Metropolitan College MET CS342 Data Structures with Java Dr. V.Shtern (Fall 2011) Course Syllabus 1. Course Objectives Welcome to MET CS342 Data Structures with Java. The intent of this

More information

Course: Honors AP Computer Science Instructor: Mr. Jason A. Townsend

Course: Honors AP Computer Science Instructor: Mr. Jason A. Townsend Course: Honors AP Computer Science Instructor: Mr. Jason A. Townsend Email: jtownsend@pkwy.k12.mo.us Course Description: The material for this course is the equivalent of one to two semesters of an entry

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS VIDEO EDITING VPT 1210

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS VIDEO EDITING VPT 1210 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS VIDEO EDITING VPT 1210 Class Hours: 4.0 Credit Hours: 4.0 Laboratory Hours: 0 Date Revised: Spring 07 Catalog Course Description: The course

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

SYLLABUS. Departmental Syllabus. CompTIA A+ Practical Applications. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus

SYLLABUS. Departmental Syllabus. CompTIA A+ Practical Applications. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus SYLLABUS DATE OF LAST REVIEW: 12/5/2014 CIP CODE: 11.1006 SEMESTER: COURSE TITLE: COURSE NUMBER: CompTIA A+ Practical Applications CRTE0101 CREDIT HOURS: 3 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE:

More information

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR DEMR 1410 DIESEL ENGINE TESTING AND REPAIR I SEMESTER HOURS CREDIT: 4

CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR DEMR 1410 DIESEL ENGINE TESTING AND REPAIR I SEMESTER HOURS CREDIT: 4 I. INTRODUCTION CENTRAL TEXAS COLLEGE INDUSTRIAL TECHNOLOGY DEPARTMENT SYLLABUS FOR DEMR 1410 DIESEL ENGINE TESTING AND REPAIR I SEMESTER HOURS CREDIT: 4 A. This course provides the student with advanced

More information

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD Course Outline Introduction to Networks [CISCO 1] ISS 111

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD Course Outline Introduction to Networks [CISCO 1] ISS 111 Cisco Systems Cisco Academy HARFORD COMMUNITY COLLEGE 40 Thomas Run Road Bel Air, MD 205 Course Outline Introduction to Networks [CISCO ] ISS COURSE NUMBER: ISS COURSE NAME: CCNA Introduction to Networks

More information

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

SAULTCOLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE SAULTCOLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE COURSE TITLE: CODE NO. : SEMESTER: 3 PROGRAM: AUTHOR: Computer Programmer Fred Carella DATE: Fall 2013 PREVIOUS OUTLINE

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS HPC INTERNETWORKING & GRID TECHNOLOGY HPC 1020

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS HPC INTERNETWORKING & GRID TECHNOLOGY HPC 1020 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS HPC INTERNETWORKING & GRID TECHNOLOGY HPC 1020 Class Hours: 3.0 Credit Hours: 4.0 Laboratory Hours: 3.0 Revised: Spring 03 NOTE: This course

More information

Cowley College & Area Vocational Technical School

Cowley College & Area Vocational Technical School Cowley College & Area Vocational Technical School COURSE PROCEDURE FOR C++ PROGRAMMING CIS1862 3 Credit Hours Student Level: This course is open to students on the college level in either freshman or sophomore

More information

CPS352 Database Systems Syllabus Fall 2012

CPS352 Database Systems Syllabus Fall 2012 CPS352 Database Systems Syllabus Fall 2012 Professor: Simon Miner Fall Semester 2012 Contact: Simon.Miner@gordon.edu Thursday 6:00 9:00 pm KOSC 128 978-380- 2626 KOSC 243 Office Hours: Thursday 4:00 6:00

More information

Syllabus for HPE 451 Directed Study 1-3 Credit Hours Spring 2014

Syllabus for HPE 451 Directed Study 1-3 Credit Hours Spring 2014 Syllabus for HPE 451 Directed Study 1-3 Credit Hours Spring 2014 I. COURSE DESCRIPTION The study of an approved topic, project, or practicum. Intended to supplement a subject already studied in a HPE class

More information

SYLLABUS. Departmental Syllabus CIST Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus

SYLLABUS. Departmental Syllabus CIST Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus SYLLABUS DATE OF LAST REVIEW: 02/2013 CIP CODE: 11.0901 SEMESTER: COURSE TITLE: Advanced System Manager (Windows 2008 Network) COURSE NUMBER: CIST-0218 CREDIT HOURS: 4 INSTRUCTOR: OFFICE LOCATION: OFFICE

More information

Hrs Hrs Hrs Hrs Hrs Marks Marks Marks Marks Marks

Hrs Hrs Hrs Hrs Hrs Marks Marks Marks Marks Marks Subject Code: CC103-N Subject Title: FUNDAMENTALS OF PROGRAMMING Teaching scheme Total L T P Total Theory Credit Evaluation Scheme Mid Sem Exam CIA Pract. Total Hrs Hrs Hrs Hrs Hrs Marks Marks Marks Marks

More information

COLLEGE OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION TECHNOLOGY COURSE SYLLABUS/SPECIFICATION

COLLEGE OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION TECHNOLOGY COURSE SYLLABUS/SPECIFICATION COLLEGE OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION TECHNOLOGY COURSE SYLLABUS/SPECIFICATION CODE & TITLE: ITCS 334 Introduction to PL/SQL (ODBA 2) WEIGHT: (2-2 - 3) PREREQUISITE: ITCS 333 DESCRIPTION:

More information

FOUNDATIONS OF INFORMATION SYSTEMS MIS 2749 COURSE SYLLABUS Fall, Course Title and Description

FOUNDATIONS OF INFORMATION SYSTEMS MIS 2749 COURSE SYLLABUS Fall, Course Title and Description FOUNDATIONS OF INFORMATION SYSTEMS MIS 2749 COURSE SYLLABUS Fall, 2013 Instructor s Name: Vicki Robertson E-mail: vrobrtsn@memphis.edu Course Title and Description Foundations of Information Systems. (3

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

Instructor: Anna Miller

Instructor: Anna Miller Media Graphics ADV 3203 Fall 2016 Advertising Media Graphics - 81584 - ADV 3203 Mondays and Wednesdays 12:15 PM - 1:30 PM room 1011 And Advertising Media Graphics - 82354 - ADV 3203 Mondays and Wednesdays

More information