Course outline. Code: SGD213 Title: Professional Game Programming

Size: px
Start display at page:

Download "Course outline. Code: SGD213 Title: Professional Game Programming"

Transcription

1 Course outline Code: SGD213 Title: Professional Game Programming Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2016 Course Coordinator: Vikram Saran vsaran@usc.edu.au 1. What is this course about? 1.1 Course description In this course, you will apply the programming skills learnt in SGD203 to Unity, and the C# programming language. Unity is a professional game development environment, used widely in the industry, and C# is one of the most commonly used programming languages within and beyond game programming. Concurrently, you will begin to develop the essential soft skills required to excel as a game programmer within a multi-disciplinary development team. 1.2 Course content The Unity/MonoDevelop development environment The C# programming language Debugging, formatting and commenting code to a style guide Implementing a character controller, collision detection, and basic animation in Unity. Communicating technical programming concepts with programmers and non-programmers. Writing a technical specification, including architectural diagrams. Working from a technical specification. Using (game) programming patterns appropriately. 2. Unit value 12 units

2 Page 2 3. How does this course contribute to my learning? Specific Learning Outcomes Assessment Tasks Graduate Qualities On successful completion of this course you should be able to: Analyse, evaluate, and develop programs in the C# language. Work in a structured and modular manner, consistent with the needs of a team development environment. Communicate programming concepts with simplicity and precision when collaborating with non-programmers, both verbally and in the form of a technical specification. Develop code to specification within the Unity Development Environment. You will be assessed on the learning outcome in task/s: Completing these tasks successfully will contribute to you becoming: 3 Creative and critical thinkers. Empowered. 1, 2 and 3 Engaged. 2 Empowered. Engaged. 3 Creative and critical thinkers. Empowered. 4. Am I eligible to enrol in this course? Refer to the Coursework Programs and Awards - Academic Policy for definitions of pre-requisites, corequisites and anti-requisites 4.1 Enrolment restrictions 4.2 Pre-requisites SGD203 or ICT Co-requisites 4.4 Anti-requisites 4.5 Specific assumed prior knowledge and skills N/A 5. How am I going to be assessed? 5.1 Grading scale Standard High Distinction (HD), Distinction (DN), Credit (CR), Pass (PS), Fail (FL)

3 Page Assessment tasks Task Assessment Tasks No. Individual or Group Weighting % What is the duration / length? When should I submit? 1 Code clean-up Individual 30% N/A Friday, Weeks 4,6,8,10 & 12, 5pm 2 Developing a Client Requirements Specification 3 Implementing the Client Requirements Specification Group 30% 1500 Words & Architecture Diagrams Individual 40% 500 Words & Code Artefacts 100% Friday, Week 7, 5pm Friday, Week 13, 5pm Where should I submit it? Blackboard Blackboard Blackboard Assessment Task 1: Code clean-up Goal: When working in a structured team environment, you will inevitably work on programs written by other programmers, and they will work on yours. Poorly written code results in inefficiency and confusion. In this task, you will evaluate and debug flawed code, follow a specified style, and provide useful comments where necessary. Product: You will debug, format, and comment the 5 pieces of flawed C# implementations of game programming patterns provided. Format: Each piece of debugged code must be submitted separately to Blackboard, by the end of weeks 4, 6, 8, 10 and 12, respectively. Each sub-task is weighted evenly, and worth 6% of the total weighting for the course. This is an individual task. Criteria: Adherence to the provided coding standards. Functioning of code. Clarity of commenting. Efficiency of code. Generic skill assessed Skill assessment level Problem solving Introductory Communication Introductory Assessment Task 2: Developing a tech spec Goal: Product: Format: Miscommunication within a team, especially between programmers and nonprogrammers, often leads to inefficiency, confusion, and programs which do not perform as expected. In this task, you will develop a client specification document, which simply and precisely translates "client-speak" into "programmer-speak". You must not only distil the client's expectations, you must also describe the technical requirements of the project, adding structure to the process (architecture) and reducing the likelihood of miscommunication. You will communicate with a game designer, and produce a technical specification document, outlining the inputs, outputs and essential processes of a module of code, which meets their expectations and needs. The specification document should be as descriptive as necessary, but as concise as possible, 3-4 pages, including relevant architecture diagrams (in any consistent format

4 Page 4 of your choice, such as UML). Examples will be provided in class. This is a group assessed task. Criteria: Verbal and written communication of development requirements. Specifically: Accuracy of communication. Clarity of communication. Brevity of communication. Generic skill assessed Skill assessment level Communication Developing Organisation Introductory Assessment Task 3: Implementing a tech spec Goal: Developing a client requirements specification clarifies the expectations of the client as well as the technical requirements of the project. In this task, now implement a portion of C# code accordingly, within the Unity 3D Game Engine. Product: You will produce C# code in a Unity project as a group, however individuals will allocate themselves specific functionality within the requirements. Format: This is a group task with individual assessment. You will work with the rest of your group from Assessment Task 2 to ensure that your sections of code interact with the rest of the project as expected. Submit the project as a group, and each individual will also be required to submit their own self-assessment. Criteria: Functioning of code. Adherence to the provided coding standards. Clarity of commenting. Efficiency of code. Critical self-evaluation. Generic skill assessed Skill assessment level Problem solving Developing Organisation Developing 5.3 Additional assessment requirements SafeAssign In order to minimise incidents of plagiarism and collusion, this course may require that some of its assessment tasks are submitted electronically via SafeAssign. This software allows for text comparisons to be made between your submitted assessment item and all other work that SafeAssign has access to. If required, details of how to submit via SafeAssign will be provided on the Blackboard site of the course. Eligibility for Supplementary Assessment Your eligibility for supplementary assessment in a course is dependent of the following conditions applying: a) The final mark is in the percentage range 47% to 49.4% b) The course is graded using the Standard Grading scale c) You have not failed an assessment task in the course due to academic misconduct 5.4 Submission penalties Late submission of assessment tasks will be penalised at the following maximum rate: 5% (of the assessment task s identified value) per day for the first two days from the date identified as the due date for the assessment task. 10% (of the assessment task s identified value) for the third day

5 Page 5 20% (of the assessment task s identified value) for the fourth day and subsequent days up to and including seven days from the date identified as the due date for the assessment task. A result of zero is awarded for an assessment task submitted after seven days from the date identified as the due date for the assessment task. Weekdays and weekends are included in the calculation of days late. To request an extension you must contact your course coordinator to negotiate an outcome. 6. How is the course offered? 6.1 Directed study hours On campus computer lab: 3 hours per week 6.2 Teaching semester/session(s) offered Semester Course activities Teaching What key concepts/content will I Week / learn? Module What activities will I engage in to learn the concepts/content? Directed Study Independent Study Activities Activities 1 Course overview and the Unity development environment 2 Modular programming and the C# programming language 3 How to code like you have OCD (and why you should) debugging, commenting and formatting code Communicating programming concepts with non-programmers 4 Friday, 25 th March Good Friday Public Holiday Unity a brief run through Scripts in Unity C# Variables, conditions, loops and comment. Reading a tech spec. Role-play activity Mid Semester Break 5 Software design patterns Examining some common patterns 6 Real world abominations applying modularity and design patterns 7 Implementing a character controller in Unity Working from a technical specification 8 Monday, 25 th April ANZAC Day Public Holiday 9 Monday, Implementing collision detection in Unity Global and persistent variables in Unity C# code for character controller Working from a tech spec, 1st Debugging Task, 2nd Debugging Task, 3rd Debugging Task C# code for collisions, 4th Debugging Task

6 Page 6 2 nd May Labour Day Public Holiday 10 Coding interactions with animations in Unity C# code for interacting with animations 11 Development workshop Development workshop 12 Development workshop Development workshop 13 Development workshop Development workshop Please note that the course activities may be subject to variation., 5th Debugging Task Independent development Independent development Independent development 7. What resources do I need to undertake this course? 7.1 Prescribed text(s) Game Programming Patterns by Robert Nystrom is required, with a free version available online at: Required and recommended readings Lists of required and recommended readings may be found for this course on its Blackboard site. These materials/readings will assist you in preparing for tutorials and assignments, and will provide further information regarding particular aspects of your course. 7.3 Specific requirements 7.4 Risk management There is minimal health and safety risk in this course. It is your responsibility to familiarise yourself with the Health and Safety policies and procedures applicable within campus areas. Whenever using computers for prolonged periods, take regular breaks and work in an ergonomic environment. 8. How can I obtain help with my studies? In the first instance you should contact your tutor, then the Course Coordinator. Student Life and Learning provides additional assistance to all students through Peer Advisors and Academic Skills Advisors. You can drop in or book an appointment. To book: Tel: or StudentLifeandLearning@usc.edu.au 9. Links to relevant University policies and procedures For more information on Academic Learning & Teaching categories including: Assessment: Courses and Coursework Programs Review of Assessment and Final Grades Supplementary Assessment Administration of Central Examinations Deferred Examinations Student Academic Misconduct

7 Page 7 Students with a Disability Faculty specific information LOCATING JOURNAL ARTICLES If you have been notified that the journal articles in this course are available on e-reserve, use the on-line library catalogue to find them. For journal articles not on e-reserve, click on the "Journals and Newspapers" link on the Library Homepage. Enter the journal title e.g. History Australia, then search for the volume and issue or keyword as needed. ASSIGNMENT COVER SHEETS The Faculty of Arts and Business assignment cover sheet can be found on Blackboard or on the USC Portal at: Faculty of Arts and Business (Students) > Forms. It must be completed in full identifying student name, assignment topic, tutor and tutorial time. This must be attached securely to the front of each assessment item prior to submission. Claims of loss of assignments will not be considered unless supported by a receipt. HELP: If you are experiencing problems with your studies or academic work, consult your tutor in the first instance or the Course Coordinator as quickly as possible. DIFFICULTIES: If you are experiencing difficulties relating to teaching and assessment you should approach your tutor in the first instance. If not satisfied after that you should approach in order your Course Coordinator, Program Coordinator then Head of School. General enquiries and student support Student Central Building C Tel: Fax: studentcentral@usc.edu.au

Course outline. Code: SGD213 Title: Professional Game Programming

Course outline. Code: SGD213 Title: Professional Game Programming Course outline Code: SGD213 Title: Professional Game Programming Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2015 Course Coordinator:

More information

Course outline. Code: ACC221 Title: Company Accounting

Course outline. Code: ACC221 Title: Company Accounting Faculty of Arts and Business School of Business Teaching Session: Semester 1 Year: 2016 Course Coordinator: Dr Peter Baxter Office: K1.23 Telephone: +61 7 5430 2871 Email: pbaxter@usc.edu.au Consultation

More information

Course outline. Code: ICT221 Title: Software Development 1

Course outline. Code: ICT221 Title: Software Development 1 Faculty of: Arts and Business School of Business Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr Mark Utting Office: K2.02 Telephone: (07)5459 4495 Email: utting@usc.edu.au Consultation

More information

Course outline. Code: ICT115 Title: Introduction to Systems Design

Course outline. Code: ICT115 Title: Introduction to Systems Design Course outline Code: ICT115 Title: Introduction to Systems Design Faculty of Arts and Business School of Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Wayne Clutterbuck Office: K1.10

More information

Course outline. Code: PRM701 Title: Project Management Principles

Course outline. Code: PRM701 Title: Project Management Principles Faculty of: Arts and Business School of Business Teaching Session: Semester 1 Year: 2015 Course Coordinator: Steven Boyd Office No: K1.07A Phone No: (07)5456 5129 Email: sboyd@usc.edu.au Course outline

More information

Course outline. Code: MKG322 Title: Brand Management

Course outline. Code: MKG322 Title: Brand Management Faculty of Arts and Business School of Business Teaching Session: Semester 1 Year: 2016 Course Coordinator: Dr Wendy Spinks Room: K2.11 Phone: +61 7 5430 1245 Email: WSpinks@usc.edu.au Course outline Code:

More information

Course outline. Code: MGT735 Title: Retail Supply Chain Management and Procurement

Course outline. Code: MGT735 Title: Retail Supply Chain Management and Procurement Course outline Code: MGT735 Title: Retail Supply Chain Management and Procurement Faculty of Arts and Business School of Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Robert Ogulin

More information

Course outline. Code: ICT301 Title: Advanced Network Topics, Management & Security

Course outline. Code: ICT301 Title: Advanced Network Topics, Management & Security Course outline Code: ICT301 Title: Advanced Network Topics, Management & Security Faculty of Arts and Business School of Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Jacqui Blake

More information

Course outline. Code: ICT311 Title: Software Development 2

Course outline. Code: ICT311 Title: Software Development 2 Faculty of Arts and Business School of Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Mark Utting Office: K2.02A Telephone: +61 7 5459 4495 Email: Utting@usc.edu.au Consultation

More information

Course outline. Code: INF701 Title: Management Informatics

Course outline. Code: INF701 Title: Management Informatics Course outline Code: INF701 Title: Management Informatics Faculty of: Arts and Business School of Business Teaching Session: Semester 1 Year: 2015 Course Coordinator: Associate Professor Donald Kerr Office:

More information

Course outline. Code: MGT310 Title: Small Business & New Venture Management

Course outline. Code: MGT310 Title: Small Business & New Venture Management Course outline Code: MGT310 Title: Small Business & New Venture Management Faculty of: Arts and Business School of Business Teaching Session: Semester 1 Year: 2016 Course Coordinator: Dr Gordon Eckhardt

More information

Code: CMN202 Title: Digital Video Editing

Code: CMN202 Title: Digital Video Editing 0BCourse outline Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr Joanna McIntyre Email: jmcinty2@usc.edu.au

More information

Course outline. Code: IBS321 Title: International Business Strategy

Course outline. Code: IBS321 Title: International Business Strategy Course outline Code: IBS321 Title: International Business Strategy Faculty of: Arts and Business School of Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Jane Craig Office: K2.06

More information

Course outline. Code: HRM210 Title: Managing Human Resources

Course outline. Code: HRM210 Title: Managing Human Resources Faculty of: Arts and Business School of Business Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr John Whiteoak Office: K1.05 Telephone: (07)5459 4809 Email: whiteoak@usc.edu.au Consultation

More information

Course outline. Code: DES215 Title: Graphic Design E Internship / Professional Project

Course outline. Code: DES215 Title: Graphic Design E Internship / Professional Project Course outline Code: DES215 Title: Graphic Design E Internship / Professional Project Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Session 8 Year: 2015

More information

Course outline. Code: BUS706 Title: International Business Law and Ethics

Course outline. Code: BUS706 Title: International Business Law and Ethics Course outline Code: BUS706 Title: International Business Law and Ethics Faculty of: Arts and Business School of Business Teaching Session: Semester 1 Year: 2015 Course Coordinator: Nathalie Wharton Blaga

More information

Course outline. Code: BUS501 Title: Business Analytics and Statistics

Course outline. Code: BUS501 Title: Business Analytics and Statistics Course outline Code: BUS501 Title: Business Analytics and Statistics Faculty of Arts and Business School of Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Professor Willem Selen Office:

More information

Course outline. Code: PED310 Title: Property Investment Analysis financing and capital markets

Course outline. Code: PED310 Title: Property Investment Analysis financing and capital markets Course outline Code: PED310 Title: Property Investment Analysis financing and capital markets Faculty of Arts and Business School of Business Teaching Session: Semester 1 Year: 2016 Course Coordinator:

More information

Course outline. Code: DRA101 Title: Dramatic Languages

Course outline. Code: DRA101 Title: Dramatic Languages Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Jo Loth Phone No: (07)5456 5845 Office: D1.02 Email: jloth@usc.edu.au

More information

Course outline. Code: DES 211 Title: Graphic Design A

Course outline. Code: DES 211 Title: Graphic Design A Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2015 Course Coordinator: Kevin Todd Email: ktodd@usc.edu.au Course outline Code: DES 211

More information

Course outline. Code: PED312 Title: Property and Asset Management

Course outline. Code: PED312 Title: Property and Asset Management Course outline Code: PED312 Title: Property and Asset Management Faculty of: Arts and Business School of Business Teaching Session: Semester 1 Year: 2015 Course Coordinator: Professor Mike Hefferan Office:

More information

Course outline. Code: ACC211 Title: Business Finance

Course outline. Code: ACC211 Title: Business Finance Faculty of: Arts and Business School of Business Teaching Session: Semester 1 Year: 2015 Course Coordinator: Gabrielle Parle Office: K2.44 Telephone: (07) 5430 1275 Email: gparle@usc.edu.au Consultation

More information

Course outline. Code: CMN248 Title: Creative Advertising

Course outline. Code: CMN248 Title: Creative Advertising Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2016 Course Coordinator: Dr Kelly Choong Email: kchoong@usc.edu.au Course outline Code:

More information

Course outline. Code: EMB761 Title: Corporate Governance, Business Ethics and Corporate Social Responsibility

Course outline. Code: EMB761 Title: Corporate Governance, Business Ethics and Corporate Social Responsibility Course outline Code: EMB761 Title: Corporate Governance, Business Ethics and Corporate Social Responsibility Faculty of Arts and Business School of Business Teaching Session: Session 5 Year: 2015 Course

More information

Course outline. Code: EMB781 Title: Managerial Business Analytics

Course outline. Code: EMB781 Title: Managerial Business Analytics Course outline Code: EMB781 Title: Managerial Business Analytics Faculty of Arts and Business School of Business Teaching Session: Session 7 Year: 2015 Course Coordinator: Professor Willem Selen Room:

More information

Course outline. Code: ACC610 Title: Strategic Management Accounting

Course outline. Code: ACC610 Title: Strategic Management Accounting Course outline Code: ACC610 Title: Strategic Management Accounting Faculty of Arts and Business School of Business Teaching Session: Semester 1 Year: 2016 Course Coordinator: Dr Monte Wynder Office: K2.08

More information

Course outline. Code: PSY204 Title: Social Psychology

Course outline. Code: PSY204 Title: Social Psychology Faculty of Arts and Business School of Social Sciences Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Kay Pozzebon Room: T2.10 Phone: (07)5459 4604 Email: kpozzebo@usc.edu.au Course outline

More information

Course outline. Code: FIN210 Title: Introduction to Financial Planning

Course outline. Code: FIN210 Title: Introduction to Financial Planning Course outline Code: FIN210 Title: Introduction to Financial Planning Faculty of: Arts and Business School of Business Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr Gabrielle Parle Office:

More information

Course outline. Code: FIN310 Title: Personal Investment Management

Course outline. Code: FIN310 Title: Personal Investment Management Course outline Code: FIN310 Title: Personal Investment Management Faculty of Arts and Business School of Business Teaching Session: Semester 1 Year: 2015 Course Coordinator: Professor Sajid Anwar Office:

More information

Course outline. Code: NUT405 Title: Nutrition and Dietetic Practice Management

Course outline. Code: NUT405 Title: Nutrition and Dietetic Practice Management Course outline Code: NUT405 Title: Nutrition and Dietetic Practice Management Faculty of: Science, Health, Education and Engineering Teaching Session: Session 5 Year: 2016 Course Coordinator: Dr Anthony

More information

Course outline. Code: FIN321 Title: Financial Plan Construction

Course outline. Code: FIN321 Title: Financial Plan Construction Faculty of Arts and Business School of Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Geoff Burchell Email: gburchel@usc.edu.au Consultation Times: As notified on Blackboard Course

More information

Course outline. Code: IBS220 Title: Cross-Cultural Management

Course outline. Code: IBS220 Title: Cross-Cultural Management Faculty of Arts and Business School of Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Peter Jenner Office: K1.09 Telephone: +61 7 5456 5040 Email: pjenner@usc.edu.au Consultation

More information

Code: COU707 Title: Counselling and Mental Health

Code: COU707 Title: Counselling and Mental Health ` Faculty of Arts and Business School of Social Sciences Teaching Session: Semester 1 Year: 2016 Course Coordinator: Neil Mellor Office: T2.32 Phone No: (07)5430 1265 Email: NMellor@usc.edu.au UCourse

More information

Course outline. Code: CMN237 Title: Online Journalism

Course outline. Code: CMN237 Title: Online Journalism Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 2 Year: 2015 Course Coordinator: Renee Barnes Email: renee.barnes@usc.edu.au Phone: 07 5430 1260

More information

Course outline. Code: CMN275 Title: Advertising Channel Planning and Purchasing

Course outline. Code: CMN275 Title: Advertising Channel Planning and Purchasing Course outline Code: CMN275 Title: Advertising Channel Planning and Purchasing Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2015 Course

More information

Course outline. Code: LGL201 Title: Criminal Law: An Introduction

Course outline. Code: LGL201 Title: Criminal Law: An Introduction Course outline Code: LGL201 Title: Criminal Law: An Introduction Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 2 Year: 2015 Course Coordinator:

More information

Course outline. Code: CMN140 Title: Introduction to Creative Advertising

Course outline. Code: CMN140 Title: Introduction to Creative Advertising Course outline Code: CMN140 Title: Introduction to Creative Advertising Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 2 Year: 2015 Course Coordinator:

More information

Course outline. Code: CMN275 Title: Advertising Channel Planning and Purchasing

Course outline. Code: CMN275 Title: Advertising Channel Planning and Purchasing Course outline Code: CMN275 Title: Advertising Channel Planning and Purchasing Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2016 Course

More information

Course outline. Code: ENT221 Title: New Venture Growth

Course outline. Code: ENT221 Title: New Venture Growth Course outline Code: ENT221 Title: New Venture Growth Faculty of Arts and Business School of Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Retha de Villiers Scheepers Office:

More information

Course outline. Code: COU706 Title: Counselling Children and Young People

Course outline. Code: COU706 Title: Counselling Children and Young People Course outline Code: COU706 Title: Counselling Children and Young People Faculty of Arts and Business School of Social Sciences Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr Andrew McClelland

More information

Course outline. Code: CMN120 Title: Public Relations: Contemporary Perspectives

Course outline. Code: CMN120 Title: Public Relations: Contemporary Perspectives Course outline Code: CMN120 Title: Public Relations: Contemporary Perspectives Faculty of: Arts and Business School of: and Creative Industries Teaching Session: Semester 1 Year: 2015 Course Coordinator:

More information

Course outline. Code: PSY202 Title: Physiological Psychology

Course outline. Code: PSY202 Title: Physiological Psychology Faculty of Arts and Business School of Social Sciences Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr Tamara De Regt Room: T2.11 Phone: (07)5459 4481 Email: tderegt@usc.edu.au Course outline

More information

Course outline. Code: CMN246 Title: Creative Writing for Children and Young Adults

Course outline. Code: CMN246 Title: Creative Writing for Children and Young Adults Course outline Code: CMN246 Title: Creative Writing for Children and Young Adults Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2015

More information

Course outline. Code: LGL202 Title: Family Law: Legal Frameworks and Issues

Course outline. Code: LGL202 Title: Family Law: Legal Frameworks and Issues Course outline Code: LGL202 Title: Family Law: Legal Frameworks and Issues Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2015 Course

More information

Course outline. Code: JST203 Title: Issues in Crime and Criminal Justice

Course outline. Code: JST203 Title: Issues in Crime and Criminal Justice Course outline Code: JST203 Title: Issues in Crime and Criminal Justice Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2015 Course Coordinator:

More information

Course outline. Code: SCS172 Title: Social Work and Human Services Practice

Course outline. Code: SCS172 Title: Social Work and Human Services Practice Course outline Code: SCS172 Title: Social Work and Human Services Practice Faculty of Arts and Business School of Social Sciences Teaching Session: Semester 2 Year: 2015 Course Coordinator: Christine Morley

More information

Course outline. Code: DES222 Title: e-media B

Course outline. Code: DES222 Title: e-media B Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 2 Year: 2015 Course Coordinator: Pamela Blake Room: Phone: 07 5476 6618 Email: pblake@usc.edu.au

More information

Course outline. Code: NUT351 Title: Medical Nutrition Therapy 1

Course outline. Code: NUT351 Title: Medical Nutrition Therapy 1 Course outline Code: NUT351 Title: Medical Nutrition Therapy 1 Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 1 Year: 2016 Course Coordinator: Dr Hattie Wright Email:

More information

Course outline. Code: NUT331 Title: Nutrition and Dietetic Practice Management

Course outline. Code: NUT331 Title: Nutrition and Dietetic Practice Management Course outline Code: NUT331 Title: Nutrition and Dietetic Practice Management Faculty of: Science, Health, Education and Engineering Teaching Session: Session 5 Year: 2014 Course Coordinator: Dr Hattie

More information

Course outline. Code: NUT101 Title: Introduction to Nutrition

Course outline. Code: NUT101 Title: Introduction to Nutrition Course outline Code: NUT101 Title: Introduction to Nutrition Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 1 Year: 2015 Course Coordinator: Sarah Burkhart, Email: sburkhar@usc.edu.au,

More information

How to Become an Engineer

How to Become an Engineer Course outline Code: ENG702 Title: Contract Management Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: John Yeaman Email: jyeaman@usc.edu.au

More information

Course outline. Code: EDU101 Title: Human Development and Learning

Course outline. Code: EDU101 Title: Human Development and Learning Course outline Code: EDU101 Title: Human Development and Learning Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: Associate Professor

More information

Course outline. Code: ENG412 Title: Design of Wastewater Treatment Systems

Course outline. Code: ENG412 Title: Design of Wastewater Treatment Systems Course outline Code: ENG412 Title: Design of Wastewater Treatment Systems Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Richard White

More information

Course outline. Code: OCC321 Title: Psychosocial Aspects of Occupational Therapy

Course outline. Code: OCC321 Title: Psychosocial Aspects of Occupational Therapy Course outline Code: OCC321 Title: Psychosocial Aspects of Occupational Therapy Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr Lawla

More information

Course Outline. Code: LAW103 Title: Criminal Law and Procedure A

Course Outline. Code: LAW103 Title: Criminal Law and Procedure A Course Outline Code: LAW103 Title: Criminal Law and Procedure A USC Law School Teaching Session: Semester 1 Year: 2015 Course Coordinator: Associate Professor Kelley Burton Office No: JG.03G Phone No:

More information

Course outline. Code: SPX222 Title: Sport and Exercise Psychology

Course outline. Code: SPX222 Title: Sport and Exercise Psychology Course outline Code: SPX222 Title: Sport and Exercise Psychology Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Lisa Martin Tel: (07)

More information

Course Outline. Code: SWK700 Title: Master of Social Work Field Education 1

Course Outline. Code: SWK700 Title: Master of Social Work Field Education 1 Course Outline Code: SWK700 Title: Master of Social Work Field Education 1 Faculty of Arts and Business School of Social Sciences Teaching Session: Semester 2 Year: 2015 Course Coordinator: Gerard Jefferies

More information

Course outline. Code: COU301 Title: Positive Psychology for Counselling

Course outline. Code: COU301 Title: Positive Psychology for Counselling Course outline Code: COU301 Title: Positive Psychology for Counselling Faculty of Arts and Business School of Social Sciences Teaching Session: Semester 1 Year: 2015 Course Coordinator: Suzanne Evans Office:

More information

Course outline. Code: HLT140 Title: Think Health

Course outline. Code: HLT140 Title: Think Health Course outline Code: HLT140 Title: Think Health Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 1 Year: 2015 Course Coordinator: Ms Tara Gamble Email: tgamble@usc.edu.au

More information

Course outline. Code: EDU351 Title: Alternative Schooling Pedagogies

Course outline. Code: EDU351 Title: Alternative Schooling Pedagogies Course outline Code: EDU351 Title: Alternative Schooling Pedagogies Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 1 Year: 2015 Course Coordinator: Elizabeth Toohey Tel:

More information

Course Outline. Code: LAW104 Title: Criminal Law and Procedure B

Course Outline. Code: LAW104 Title: Criminal Law and Procedure B Course Outline Code: LAW104 Title: Criminal Law and Procedure B USC Law School Teaching Session: Semester 2 Year: 2015 Course Coordinator: Associate Professor Kelley Burton Office No: JG.03G Phone No:

More information

Course Outline. Code: LAW202 Title: Torts B

Course Outline. Code: LAW202 Title: Torts B USC Law School Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Jay Sanderson Office No: JG.03D Phone No: 07 5456 5260 Email: jsander4@usc.edu.au Course Outline Code: LAW202 Title: Torts

More information

Course outline. Code: PSY754 Title: Clinical Health Psychology and Psychopharmacology

Course outline. Code: PSY754 Title: Clinical Health Psychology and Psychopharmacology Course outline Code: PSY754 Title: Clinical Health Psychology and Psychopharmacology Faculty of Arts and Business School of Social Sciences Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr

More information

Course outline. Code: EDU343 Title: Inclusive Practices and Intervention in Early Education

Course outline. Code: EDU343 Title: Inclusive Practices and Intervention in Early Education Course outline Code: EDU343 Title: Inclusive Practices and Intervention in Early Education Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator:

More information

Course outline. Code: NUR704 Title: Leadership in Clinical Practice

Course outline. Code: NUR704 Title: Leadership in Clinical Practice Course outline Code: NUR704 Title: Leadership in Clinical Practice Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: A/Prof Jennifer Rowe

More information

Course outline. Code: ENG706 Title: Planning for Project Management

Course outline. Code: ENG706 Title: Planning for Project Management Course outline Code: ENG706 Title: Planning for Project Management Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: John Yeaman Email:

More information

Course outline. Code: EDU775 Title: Education for International Development (Project)

Course outline. Code: EDU775 Title: Education for International Development (Project) Course outline Code: EDU775 Title: Education for International Development (Project) Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: A/Prof

More information

Course Outline. Code: SWK701 Title: Master of Social Work Field Education 2

Course Outline. Code: SWK701 Title: Master of Social Work Field Education 2 Course Outline Code: SWK701 Title: Master of Social Work Field Education 2 Faculty of Arts and Business School of Social Sciences Teaching Session: Semester 2 Year: 2015 Course Coordinator: Gerard Jefferies

More information

Course outline. Code: NUR705 Title: Responding in the Emergency Context

Course outline. Code: NUR705 Title: Responding in the Emergency Context Course outline Code: NUR705 Title: Responding in the Emergency Context Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr Marc Broadbent

More information

Course outline. Code: EDU317 Title: Teaching Health and Physical Education in Primary School

Course outline. Code: EDU317 Title: Teaching Health and Physical Education in Primary School Course outline Code: EDU317 Title: Teaching Health and Physical Education in Primary School Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator:

More information

Course outline. Code: EDU206 Title: Early Childhood Education for Sustainability

Course outline. Code: EDU206 Title: Early Childhood Education for Sustainability Course outline Code: EDU206 Title: Early Childhood Education for Sustainability Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 1 Year: 2016 Course Coordinator: Dr Ali

More information

Course Outline. 2. Unit Value 12 units

Course Outline. 2. Unit Value 12 units Course Outline Code: SPX101 Title: Introduction to Sport and Exercise Science Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr Mark

More information

Course outline. Code: SCI212 Title: Genetics

Course outline. Code: SCI212 Title: Genetics Course outline Code: SCI212 Title: Genetics Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: Wayne Knibb Tel: 5430 2831 Email: wknibb@usc.edu.au

More information

Course outline. Code: DES231 Title: 3D Design A

Course outline. Code: DES231 Title: 3D Design A Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 1 Year: 2016 Course Coordinator: Dr Uwe Terton Email: uterton@usc.edu.au Course outline Code: DES231

More information

Course outline. Code: DES105 Title: Introduction to Design

Course outline. Code: DES105 Title: Introduction to Design Faculty of: Arts and Business School of: Communication and Creative Industries Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Ian White Room: D1.39 Phone: (07)5459 4437 Email: iwhite@usc.edu.au

More information

Course outline. Code: BIM202 Title: Genes in Health and Disease

Course outline. Code: BIM202 Title: Genes in Health and Disease Course outline Code: BIM202 Title: Genes in Health and Disease Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 1 Year: 2015 Course Coordinator: Dr Anna Kuballa Tel: (07)

More information

Course outline. Code: DES216 Title: Graphic Design F Professional Portfolio

Course outline. Code: DES216 Title: Graphic Design F Professional Portfolio Course outline Code: DES216 Title: Graphic Design F Professional Portfolio Faculty of: Arts and Business Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Debra Livingston Room: D1-26 Phone:

More information

Course outline. Code: MLS211 Title: Medical Biochemistry

Course outline. Code: MLS211 Title: Medical Biochemistry Course outline Code: MLS211 Title: Medical Biochemistry Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr Mark Holmes Tel: 5430 2844

More information

Course outline. Code: HLT100 Title: Anatomy and Physiology

Course outline. Code: HLT100 Title: Anatomy and Physiology Course outline Code: HLT100 Title: Anatomy and Physiology Faculty of: Science, Health, Education and Engineering Teaching Session: Semester 2 Year: 2015 Course Coordinator: Dr. Praphaporn Ton Stewart Email:

More information

MKTG204 Integrated Marketing Communications. Semester 1, 2011. Department of Marketing & Management

MKTG204 Integrated Marketing Communications. Semester 1, 2011. Department of Marketing & Management MKTG204 Integrated Marketing Communications Semester 1, 2011 Department of Marketing & Management MACQUARIE UNIVERSITY FACULTY OF BUSINESS AND ECONOMICS UNIT GUIDE Semester & Year: Semester 1, 2011 Unit

More information

Course Outline (Undergraduate):

Course Outline (Undergraduate): Course Outline (Undergraduate): Course Title Database Design Course Code ICT211/511 Faculty of Business Semester 1, 2007 DISABILITY AND LEARNING SUPPORT SERVICES The University offers a range of services

More information

Strategic Planning and Investment MSc

Strategic Planning and Investment MSc Strategic Planning and Investment MSc Programme Handbook 2013 2014 Newcastle University Business School: Postgraduate Handbook 2013 2014 Summary of programme commitments The University s Student Charter

More information

FACULTY OF SCIENCE SCHOOL OF PSYCHOLOGY

FACULTY OF SCIENCE SCHOOL OF PSYCHOLOGY FACULTY OF SCIENCE SCHOOL OF PSYCHOLOGY UNDERGRADUATE STUDENT GUIDE 2015 UNDERGRADUATE STUDENT GUIDE This document contains School procedures relevant to students undertaking undergraduate Units of Study

More information

Mart325 Services Marketing COURSE OUTLINE

Mart325 Services Marketing COURSE OUTLINE COURSE OUTLINE Semester One, 2012 Table of Contents Paper Description and Aims... 3 Learning Outcomes... 3 Teaching Staff... 3 Course Delivery... 4 Expectations and Workload... 5 Course Materials and Course

More information

INFS5978 ACCOUNTING INFORMATION SYSTEMS. Course Outline Semester 2, 2013

INFS5978 ACCOUNTING INFORMATION SYSTEMS. Course Outline Semester 2, 2013 Australian School of Business Information Systems Technology and Management INFS5978 ACCOUNTING INFORMATION SYSTEMS Course Outline Semester 2, 2013 Part A: Course-Specific Information Please consult Part

More information

Unit Outline: KXT312 Advanced Algorithmic Problem Solving & Programming

Unit Outline: KXT312 Advanced Algorithmic Problem Solving & Programming Unit Outline: KXT312 Advanced Algorithmic Problem Solving & Programming Winter, 2007 Sandy Bay Campus, Hobart Newnham Campus, Launceston Prerequisites KXT201 (or KXA251) plus an HD grade in one or more

More information

Unit Outline: KXA352 Software Engineering Project B

Unit Outline: KXA352 Software Engineering Project B Unit Outline: KXA352 Software Engineering Project B Semester 1, 2005 University of Tasmania Newnham Campus, Launceston Prerequisites Any two: KXA251 KXA252 KXA253 KXA254 KXA262 KXA281 Corequisites None

More information

Course Outline (Undergraduate):

Course Outline (Undergraduate): Course Outline (Undergraduate): Course Title Promotions Management Course Code MKG220 Faculty of Business Semester 2, 2007 DISABILITY AND LEARNING SUPPORT SERVICES The University offers a range of services

More information

Course Outline (Undergraduate):

Course Outline (Undergraduate): Course Outline (Undergraduate): Course Title ICT Analysis and Project Management Course Code ICT210/510 Faculty of Business Semester 1, 2007 DISABILITY AND LEARNING SUPPORT SERVICES The University offers

More information

Faculty of Business and Law Useful Information Guide for full-time & part-time students 2014/2015

Faculty of Business and Law Useful Information Guide for full-time & part-time students 2014/2015 Faculty of Business and Law Useful Information Guide for full-time & part-time students 2014/2015 Student Support Team Office Opening Hours: Monday Thursday 0830hrs 1700hrs Friday 0830hrs 1630hrs Newcastle

More information

Unit Outline: KXA458 Linux Internals

Unit Outline: KXA458 Linux Internals Unit Outline: KXA458 Linux Internals Semester 2, 2004 University of Tasmania Sandy Bay Campus, Hobart Newnham Campus, Launceston Prerequisites None Corequisites None Unit Weight 12.5% of one academic year

More information

ACCT5949 Managing Agile Organisations

ACCT5949 Managing Agile Organisations Business School School of Accounting ACCT5949 Managing Agile Organisations Course Outline Semester 1, 2015 Part A: Course-Specific Information Part B: Key Policies, Student Responsibilities and Support

More information

Guidelines for writing HE Course Guides

Guidelines for writing HE Course Guides Guidelines for writing HE Course Guides Course coordinators, lecturers and tutors Students COURSE GUIDE Marketing staff Professional and Administrative staff Library staff Updated February 2016 RMIT University

More information

Software Development for Business LNDN CPSI 3390

Software Development for Business LNDN CPSI 3390 Software Development for Business LNDN CPSI 3390 This course is being offered at London South Bank University, located 45 minutes from CAPA s London Centre. This course is best suited to serious students

More information

Course Outline (Undergraduate):

Course Outline (Undergraduate): Course Outline (Undergraduate): Course Title Introduction to Financial Planning Course Code FIN210 Faculty of Business Semester 1, 2007 DISABILITY AND LEARNING SUPPORT SERVICES The University offers a

More information

INFS5991 BUSINESS INTELLIGENCE METHODS

INFS5991 BUSINESS INTELLIGENCE METHODS Australian School of Business School of Information Systems, Technology and Management INFS5991 BUSINESS INTELLIGENCE METHODS Course Outline Semester 1, 2014 Part A: Course-Specific Information Please

More information

REGULATIONS: SCHOOL OF NURSING AND MIDWIFERY FREMANTLE AND BROOME

REGULATIONS: SCHOOL OF NURSING AND MIDWIFERY FREMANTLE AND BROOME REGULATIONS: SCHOOL OF NURSING AND MIDWIFERY FREMANTLE AND BROOME Purpose: These School Regulations apply to all students in the courses and units offered by the Schools of Nursing and Midwifery at the

More information

MANT 221 COMMUNICATION SKILLS 2011 COURSE OUTLINE 1st semester 18 points 0.1500 efts

MANT 221 COMMUNICATION SKILLS 2011 COURSE OUTLINE 1st semester 18 points 0.1500 efts MANT 221 COMMUNICATION SKILLS 2011 COURSE OUTLINE 1st semester 18 points 0.1500 efts Course prerequisites MANT 111 or BSNS105, and MANT 112 or MANT 102 or any 108 points Course Focus This paper aims to

More information

Research Methods in Psychology PSYC 251 Spring 2011

Research Methods in Psychology PSYC 251 Spring 2011 Research Methods in Psychology PSYC 251 Spring 2011 Instructor: Larry Z. Daily, Ph.D. Office: Stutzman-Slonaker Hall, Room 102-D Phone: 876-5297 E-mail ldaily@shepherd.edu Office Hours: MWF 2:00 to 3:00

More information

Unit Outline: KXT209/309 Advanced Dynamic Web Development

Unit Outline: KXT209/309 Advanced Dynamic Web Development Unit Outline: KXT209/309 Advanced Dynamic Web Development Semester 1, 2007 Sandy Bay Campus, Hobart Newnham Campus, Launceston Prerequisites KXT101 Corequisites None Unit Weight 15% of one academic year

More information