7805ICT Principles of Software Engineering

2805ICT System and Software Design 3815ICT Software Engineering

The purpose of this assignment is to construct and document a Requirements Specification, Design, and Development Process for a classic computer game Tetris. You should apply, as far as possible, the software engineering techniques introduced in this course. You should employ an OO design and demonstrate capability to use advanced design patterns and tactics in your project. The following problem statement is provided. The assignment is to be conducted in groups with no more than four students in one group.

Tetris

“Tetris (Russian: Тетрис [ˈtʲetrʲɪs] or [ˈtetrʲɪs]) is a puzzle video game created by Soviet software engineer Alexey Pajitnov in 1984. It has been published by several companies for multiple platforms, most prominently during a dispute over the appropriation of the rights in the late 1980s.   After    a    significant    period    of    publication by Nintendo, the rights reverted to Pajitnov in 1996, who co-founded the Tetris Company with Henk Rogers to manage licensing.

In Tetris, players complete lines by moving differently shaped pieces (tetrominoes), which descend onto the playing field. The completed lines disappear and grant the player points, and the player can proceed to fill the vacated spaces. The game ends when the playing field is filled. The longer the player can delay this outcome, the higher their score will be. In multiplayer games, players must last longer than their opponents; in certain versions, players can inflict penalties on opponents by completing a significant number of lines. Some versions add variations on the rules, such as three-dimensional displays or a system for reserving pieces.” 1

General description

Apart from the requirements from the original game, your program should have a start up page, the start up page should contain:

  1. The title of Tetris
  2. The year and course code
  3. The list of all students in your group
  4. An exit button to exit the program
  5. A score button to show top 10 players with their scores
  6. A configure button. In the configure page, a player can select normal game or game with extension (explain later), and can select the size of the field, which is the area the blocks move and build, the block dropping speeds (levels). A player can also select AI game (explain later).

1 Extracted from Wikipedia Tetris – Wikipedia (21/06/2022)

  • A play button to take the player to the game

Game control

During the game play period, the player will use following keys to control the game

  1. Left arrow key to move falling block move left.
  2. Right arrow key to move falling block move right.
  3. Up arrow key to turn the falling block 90 degree clockwise.
  4. Down arrow key to speed up dropping speed of the falling block
  5. “P” key to pause and resume the game
  6. Esc key will bring a dialog box ask if the player want to finish the game. If the user select “Yes” then return to the start page, if “No” continue game.
  7. “M” key to turn on/off music and sound effects.

Game scoring

We use a simple scoring for the game. A player or AI can get points only when they eliminate lines. More lines they eliminate through one block dropping, more points they will receive. The mapping between points and number of lines removed in one round is as:

  • 1 Lines = 100 points
  • 2 Lines = 300 points
  • 3 Lines = 600 points
  • 4 Lines = 1000 points.

Game extension

The normal game has 7 different blocks and all of them contain 4 squares (as in Figure 1). The extended game will introduce two more types of blocks with 3 squares each as in Figure 2

Figure 1. The 7 different shapes of blocks in normal Tetris

Figure 2. Two more types of blocks introduced in extended game.

AI game

The game has two different play mode: player mode and AI mode. In the player mode, the player uses the keyboard to control the movement of the dropping block as described in Game control section. In the AI mode, game AI will control the movement of the dropping block, to make it move left, right, turn and speedup dropping.

A player can select different mode in the configuration page.

When a player complete a game with score in top 10, the system will ask the player to input a name, and then the name and the score can be found in the top score page.

In the gameplay page, apart from the field of the game, the dropping block, and the accumulated blocks at the bottom part of the field, the page will also need to display other information:

  1. Your group number (you will get the number when you enrol in one group).
  2. Current score of this play session.
  3. Number of lines have been eliminated in this play session.
  4. Current level.
  5. Extended game or normal game
  6. Player mode or AI mode
  7. Next block (the shape of next dropping block when current block drops to the bottom)

Game completion

There are two ways for a game to be completed. The first is that when the field is filled with blocks and a new dropping block has no space to appear, then the game is completed. The other way is that during a game, when a player presses ESC key and then click “Yes” in the dialogue box, then the game is also completed.

Whenever a game is complete, if the score is in the top 10, the game will pop up an input dialogue box for the player to input a name. Then the name and score will appear in the top score page.

The rule is applicable for AI mode as well. But no name input is required. AI game will take “AI” as the name.

When a player completes a game with score in top 10, the system will ask the player to input a name, and then the name and the score can be found in the top score page.

MARKING SCHEME – First stage submission

Submission deadline 26 Aug 2022 midnight Total Marks      = 100 = 20% in final grade REMARKS

The following marking scheme will be used as a guide for marking this assignment. However the assessors marking the assignment may use their discretion where appropriate to deviate from this scheme.

YOU MUST INCLUDE ON THE FRONT PAGE, A LIST OF ALL GROUP MEMBERS (IN ALPHABETICAL ORDER) AND THEIR STUDENT NUMBERS, THE COURSE CODE, FAILURE TO MEET ALL THESE REQUIREMENTS WILL RESULT IN AN IMMEDIATE LOSS OF 10 MARKS.

Try to keep your overall report as concise as possible by appropriate use of graphic and tabular forms and other structuring devices.

This submission contains two elements: a technique report and a video.

Technique report making scheme

Project Planning and Documentation =             10

TaskTask descriptionMarks
Projection planBased on the template to create a project plan Project plan is reasonable and complete.The actual working hours are recorded fully.The effort and contribution table is complete with justification (if needed)5
Version control systemThe overall documentation is good regarding layout, spelling, grammar. Use screenshots to demonstrate that a version control system has been applied for the project.5

Requirements Analysis           =             50

TaskTask descriptionMarks
Functional requirementsAll functional requirements are identified, list, and described properly in a table. Each functional requirement should have a unique functional requirement id, and it should be described clearly and completely.10
Non-functional requirementsApplying FURPS+ to identify, list, and describe at least 5 non-functional requirements.5
Use case diagramDraw a use case diagram to show all use cases. All the use case diagram elements are included correctly.All functional requirements are coveredAll use cases are named properly (as verb + noun )Correctly use include and extend relationship10
Full use case descriptionPick up a use case and develop a complete full use case description. All the elements in a full use case description should be presented.10
Requirement – use case traceability matrixTo create a traceability matrix to show the relationship between functional requirements and use cases5
Activity diagramDraw an activity diagram to show the game play procedure from start the program, play the game, finish the game, and exit the program. You need to: Correctly use activity diagram notation.Start and stop symbol must be presented correctly.At least a pair of synchronization bars are used properly and correctly in one activity diagram.At least one decision diamond is used properly and correctly in one activity diagram10

Video marking scheme = 40

TaskTask descriptionMarks
Video lengthYou are asked to submit a video to demonstrate the execution of the prototype of the game. The video should be shorter than 1 minute, video content beyond 1 minute will not be assessed. 1. The video should be shorter than 1 minute.5
Cross platformThe video demonstrate that the game prototype can execute at least on two different platforms10
Start up pageWhen the game is start, it should show a start up page, on this page it needs to display: The title of TetrisThe year and course codeThe list of all students in your groupAn exit button to exit the programA score button to get into top score pageA configure button get into configure page. Click the exit button will exit the prototype5
Top score pageThe game prototype should demonstrate following function: To click the score button in the start up page pop up the top score pageThe top score page will display 10 best scores and the users (The data can be fake in the prototype)A close button in the page, when player click that button, the top score page will be closed and return to start up page5
Configure PageThe game prototype should demonstrate following function: To click the configure button in the start up page pop up the configure page.The configure page shows following configure items. (in the prototype, you only need to display following settings, functions of those settings are not asked)Size of the fieldGame levelNormal or extended gamePlayer or AI game modeA close button in the page, when player click that button, the top score page will be closed and return to start up page5
Game pageThe game prototype should demonstrate following function: To click the play button in the start up page pop up the game play page.The game page should display following itemsGame field and a dropping blockYour group number.Current score of this play session.Number of lines have been eliminated in this play session.Current level.Extended game or normal gamePlayer mode or AI modeNext block (the shape of next dropping block when current block drops to the bottom)The dropping block is dropping.A player can move the dropping block left, right and turn. When the dropping block reach the bottom of the field, it will stop. Other features will not required.Press Esc key will bring a dialog box ask if you want to finish the game. If click “Yes” then return to the start up page, if “No” continue game.10

MARKING SCHEME – Second stage submission

Submission deadline 23 Sep 2022 midnight Total Marks      = 100 = 20% in final grade REMARKS

The following marking scheme will be used as a guide for marking this assignment. However the assessors marking the assignment may use their discretion where appropriate to deviate from this scheme.

YOU MUST INCLUDE ON THE FRONT PAGE, A LIST OF ALL GROUP MEMBERS (IN ALPHABETICAL ORDER) AND THEIR STUDENT NUMBERS, THE COURSE CODE, FAILURE TO MEET ALL THESE REQUIREMENTS WILL RESULT IN AN IMMEDIATE LOSS OF 10 MARKS.

Try to keep your overall report as concise as possible by appropriate use of graphic and tabular forms and other structuring devices.

This submission contains two elements: a technique report and source code. Technique report making scheme

Project Planning and Documentation =             10

TaskTask descriptionMarks
Projection planBased on the template to create a project plan Project plan is reasonable and complete.The actual working hours are recorded fully.The effort and contribution table is complete with justification (if needed)5
Progress reportList the progress in percentage of all functional requirements and use cases. 0% means not start yet, 100% means completed, and other number means under progress. You are expected to complete at least 50% of functional requirements and use cases.5

Design and software architecture =     60

TaskTask descriptionMarks
Class diagramDraw a complete class diagram to demonstrate your design All functional requirements are covered, all classes are identified.Important attributes and methods should be given in each class.Correctly use UML notations.Should include correct multiplicityShould include all three different types of relationship: aggregation (composition), generalization, and associationUse CapitalCamelCase for class names and lowerCamelCase for method names.15
Sequence diagramDraw a sequence diagram to show one scenario Correctly use sequence diagram notation.The class names and method names must match what in the class diagram.At least one option frame or if-else frame is used properly and correctly in one sequence diagram.At least one loop frame is used properly and correctly in one sequence diagram.5
Component and Connector ViewDraw software architecture of the system (or part of the system) in a C&C view type: You need to explain the style of this view.The view should cover the entire systemThe view should be a high level enough to highlight the structure.5
DeploymentPresent the project’s software architecture in deployment styles5
style viewYou need to create a diagram to show the deployment setting, both hardware and software should be considered.You also need to give a list view to show the deployment environment of the project 
MVC architecture design patternYou need to apply MVC architectural design pattern in your game. You need to Briefly explain MVCUse design diagrams (part of a class diagram and or sequence diagrams) to explain how MVC implied in your design.Use relevant source code (copy relevant part of your source code)to show how MVC has been applied in implementation.Make sure the design diagrams and the source code are matching each other.10
Two other design patterns (10 pts each)You need to demonstrate that you’ve applied two design patterns (not including architectural design patterns such as MVC and three tiers) in your game. For each design pattern, you need: Explain what design pattern has been applied and why to use it.Use design diagrams to demonstrate your designUse relevant source code to demonstrate your implementationMake sure the code and the diagram are matching each other.20

Source code making scheme

You need to put all source code files in a ZIP file. You ZIP file should only contain source code files and a Readme.txt, no other resource files such as images and soundtracks. If you use some third- party library, you don’t need to put them in the ZIP file. Your Readme.txt file will summarize your source code.

Source code section = 30

TaskTask descriptionMarks
Readme fileYou should have a readme file in text format in your source package. The readme file should contain following information: List of source code file, and the explanation of each file.Number of lines of each source code file and the total number of lines.Naming convention of classes, objects, functions and variables.10
Source code filesThe assessor will check the source code if they are: Original (not copied from other people’s work). This is essential.Matching your design.At least 50% of functional requirements should be covered by source code at this stage.10
Naming conventionThe assessor will check the source code if they are following a consistent naming convention described in the readme file5
Suitable commentsThe assessor will check the source code if they have suitable comments for functions, classes, important variables and complex operations5

MARKING SCHEME – Final submission

Submission deadline 14 Oct 2021 midnight Total Marks      = 100 = 30% in final grade REMARKS

The following marking scheme will be used as a guide for marking this assignment. However the assessors marking the assignment may use their discretion where appropriate to deviate from this scheme.

YOU MUST INCLUDE ON THE FRONT PAGE, A LIST OF ALL GROUP MEMBERS (IN ALPHABETICAL ORDER) AND THEIR STUDENT NUMBERS, THE COURSE CODE, FAILURE TO MEET ALL THESE REQUIREMENTS WILL RESULT IN AN IMMEDIATE LOSS OF 10 MARKS.

Try to keep your overall report as concise as possible by appropriate use of graphic and tabular forms and other structuring devices.

This submission contains two elements: a technique report and a video.

Technique report making scheme

Project Planning and Documentation =             10

TaskTask descriptionMarks
Projection planBased on the template to create a project plan Project plan is reasonable and complete.The actual working hours are recorded fully.The effort and contribution table is complete with justification (if needed)5
Automate document generationThe overall documentation is good regarding layout, spelling, grammar etc. Use screenshots to demonstrate that doxygen or other auto documentation generator has been used for the project to generate documents.5

Advanced Design        =             20

TaskTask descriptionMarks
Design tacticYou need to demonstrate that you’ve applied one design tactic to improve certain quality attributes: Explain what design tactics has been applied and what quality attributes can be improved through the design tactics.Use design diagrams to demonstrate your designUse relevant source code to demonstrate your implementationMake sure the code and the diagram are matching each other.10
AI algorithmStudy the web page (Coding a Tetris AI using a Genetic Algorithm – Lucky’s Notes (wordpress.com)) or other web pages to find a simple AI algorithm to play Tetris. You need to Explain the algorithm in natural language.Describe your implementation in suitable diagramsWrite pseudocode for this algorithm.Show relevant code in your program.10

Testing =          10

TaskTask descriptionMarks
Software test descriptionBased on the STD template, produce a software test description. The STD is part of your submitted report, you don’t need to submit extra document. Your STD should contain: Test environment: detailed description of the operating system, hardware, and required software.Test cases: minimum three test cases based on test case template from the lecture or lab exercise.5
Software test reportBased on the STR template, produce a software test report. The STR is part of your submitted report, you don’t need to submit extra document. Your STR should contain: Test results: all the test cases list in your STD must be excuted and show the test result.Summary table for your entire test activities. The summery table should contain number of errors, type of errors.5

Reflection        =             0

Video marking scheme = 60

TaskTask descriptionMarks
Video lengthYou are asked to submit a video to demonstrate the execution of the full game. The video should be shorter than 3 minutes, video content beyond limit will not be assessed. 1. The video should be shorter than 3 minutes.5
Normal game functionsAll normal game functions are demonstrated, move block left, right, turn, speed drop, eliminate filled lines, update scores etc.15
Game completionTwo different ways of game completion are demonstrated5
Top score pageThe video demonstrates the update of top score page.5
Sound and musicThe game has suitable sound effect and music (you can pick up whatever sound effects and music)5
Extended gameGame with extension demonstrated5
AI gameAI game demonstrated10
Different levelsDifferent levels of the game are demonstrated.5
Different size of fieldDemonstrate different size of the field.5

You may use following tables as templates for your project management.

TaskPlanActual
#Task NameStudentPlaned TimeCumulative TimeFinished DateTimeCumulative TimeFinished Date
1Project planSmith2 Hours2 Hours17/03/202.52.518/3/20
  Mark3 Hours3 Hours17/03/203317/3/20
  Task Total5 Hours5 Hours17/03/205.55.518/3/20
         
2DocumentationSmith3 Hours5 Hours21/03/2024.521/3/20
  Anna2 Hours2 Hours20/03/203321/03/20
  Task Total5 Hours10 Hours 510.5 
3Draw Behavior Trees       
         
         
         

Project Working Load Summary

 Plan (hours)Actual (hours)
Total time100105
Average time per person2021
Smith2025
Anna2015
Mark2020
Joe1518
Tom2527

Individual marking adjustment table (Example)

  StudentEffort Level* (Rating from 0 – 5, the information is filled by the group)Contribution Level* (Rating from 0 – 5, the information is filled by the group)Justification If a student received level rating of 3 or less, your group need to give explanation for the low level rating
Smith54 
Anna55 
Mark55 
Joe43Joe didn’t complete all the tasks assigned to him (he didn’t draw the class diagram assigned to him) and Mark helped to complete the tasks….
  • *Level ratings, 5 = excellent, 4 = good, 3 = reasonable, 2 = poor, 1 = unacceptable, 0 = none

Individual score is calculated based on the score of the submission and the student’s effort level and contribution level. Suppose the submission score is S, a student’s effort’s level is e and contribution level is

c. The student’s score is calculated based on the algorithm below: T = e + c

TStudent score
7-10S x 100%
5-6S x 80%
3-4S x 40%
1-2S x 20%
00
Order Now

Get expert help for 7805ICT Principles of Software Engineering and many more. 24X7 help, plag free solution. Order online now!

Universal Assignment (June 25, 2025) 7805ICT Principles of Software Engineering. Retrieved from https://universalassignment.com/7805ict-principles-of-software-engineering/.
"7805ICT Principles of Software Engineering." Universal Assignment - June 25, 2025, https://universalassignment.com/7805ict-principles-of-software-engineering/
Universal Assignment September 22, 2022 7805ICT Principles of Software Engineering., viewed June 25, 2025,<https://universalassignment.com/7805ict-principles-of-software-engineering/>
Universal Assignment - 7805ICT Principles of Software Engineering. [Internet]. [Accessed June 25, 2025]. Available from: https://universalassignment.com/7805ict-principles-of-software-engineering/
"7805ICT Principles of Software Engineering." Universal Assignment - Accessed June 25, 2025. https://universalassignment.com/7805ict-principles-of-software-engineering/
"7805ICT Principles of Software Engineering." Universal Assignment [Online]. Available: https://universalassignment.com/7805ict-principles-of-software-engineering/. [Accessed: June 25, 2025]

Please note along with our service, we will provide you with the following deliverables:

Please do not hesitate to put forward any queries regarding the service provision.

We look forward to having you on board with us.

Most Frequent Questions & Answers

Universal Assignment Services is the best place to get help in your all kind of assignment help. We have 172+ experts available, who can help you to get HD+ grades. We also provide Free Plag report, Free Revisions,Best Price in the industry guaranteed.

We provide all kinds of assignmednt help, Report writing, Essay Writing, Dissertations, Thesis writing, Research Proposal, Research Report, Home work help, Question Answers help, Case studies, mathematical and Statistical tasks, Website development, Android application, Resume/CV writing, SOP(Statement of Purpose) Writing, Blog/Article, Poster making and so on.

We are available round the clock, 24X7, 365 days. You can appach us to our Whatsapp number +1 (613)778 8542 or email to info@universalassignment.com . We provide Free revision policy, if you need and revisions to be done on the task, we will do the same for you as soon as possible.

We provide services mainly to all major institutes and Universities in Australia, Canada, China, Malaysia, India, South Africa, New Zealand, Singapore, the United Arab Emirates, the United Kingdom, and the United States.

We provide lucrative discounts from 28% to 70% as per the wordcount, Technicality, Deadline and the number of your previous assignments done with us.

After your assignment request our team will check and update you the best suitable service for you alongwith the charges for the task. After confirmation and payment team will start the work and provide the task as per the deadline.

Yes, we will provide Plagirism free task and a free turnitin report along with the task without any extra cost.

No, if the main requirement is same, you don’t have to pay any additional amount. But it there is a additional requirement, then you have to pay the balance amount in order to get the revised solution.

The Fees are as minimum as $10 per page(1 page=250 words) and in case of a big task, we provide huge discounts.

We accept all the major Credit and Debit Cards for the payment. We do accept Paypal also.

Popular Assignments

Nursing Ethics and Law – Henry Pearson Case Study

Nursing Ethics and Law – Henry Pearson Case Study Course Code & NameNUR1103 |Context of Professional PracticeAssessment Item and NameAssessment THREE | Case StudyAssessment Item TypeEssay/ Case studyDue Date & TimeWeek 10 | 15th March 23:59 hrsLengthEssay is 1200 words + or – 10%Marks and WeightingOverall mark is out of

Read More »

NUR3397 – Complex Care Case Study Presentation

Course Code & NameNUR3397 |Complex Care AAssessment Item and NameAssessment TWO | PresentationAssessment Item TypeIndividual oral presentationDue Date & TimeWeek 10 | 22nd April 23:59 hrsResults data will be returned to you three weeks after your submission dateLength12-15 minute oral presentation recorded to ZOOM cloud + or – 10%Marks and

Read More »

AI in Recruitment: Legal and Ethical Implications for Harmony Haven

PurposeThis assessment helps you demonstrate report-writing skills essential for HR and other professional roles. It develops your research abilities, including sourcing, reviewing, and synthesizing academic and non-academic literature. Strong report-writing skills support informed business decisions, enhancing your ability to assist managers and advance your career. AI in Recruitment: Legal and

Read More »

Youth Justice Crisis: Indigenous Incarceration in Australia

issues During Impact Root  cause Youth justice crisis ongoing Disproportionate indigenous youth incarcerations reports of abuse eg Don Dale Low age of criminal responsibility (10) – Systemic racism and overpolicing – Lack of diversion and rehabilitation pathways Word: 1000 Topic selected: Youth Justic Crisis, Assessment 1: Conflict Analysis Exercise –

Read More »

PV System Design and Energy Analysis for Residential Use

Executive Summary Provide a brief summary of the key methods and key results, max 500 words. 1.         Introduction (aims and objectives and brief description of the system studied and methods of the next sections) approximately half a page 2.         Solar irradiation analysis Provide location and data used. Provide hourly GHI,

Read More »

Assignment 3: Statistical Analysis and Recommendations for Enhancing HDI

Student Name:               Your full name Student ID:                     Your Student ID Make sure to delete the instructions!! Introduction: Include a succinct introduction at the start of your report. You may write a few sentences about purpose of this report, the type of analysis, or any other relevant information (about 50 words).

Read More »

Brian Old Age Case study Assignment

Assessment 1 – Written AssessmentAssessment TypePurposeDescriptionWritten AssignmentThe purpose of this assessment is to broaden each student’s understanding of the modulecontent using a case study and assessment toolsCase Study: Brian is an 84-year-old retired farmer in a rural area in Northern Territory. Hewas recently assessed following a minor motor vehicle accident

Read More »

Assessment name: Portfolio of planning cycle

Assessment name: Portfolio of planning cycleDue Date: Friday 13 June 11:59pmWeighting: 50%Length: 2000 wordsTask Description: This Portfolio is comprised of two tasks. You must submit your assessment as onedocument. Task 1: Anecdotal record and learning experienceAnecdotal recordView the video of pre-schoolers provided under the link “Video for Assessment 2” andcomplete

Read More »

NUR5327 Assessment 3 Assignment Help

Name NUR5327 Assessment 3 (Essay)Purpose The purpose of this assessment is to demonstrate your understanding of therolesof leadership and management in healthcare by identifying and analysinga change you have actively participated in, and how it relates to key topicssuch as interprofessional communication, evidence-based practice, and staffdevelopment.LearningOutcomes NUR5327 Assessment 3 Assignment

Read More »

Mathematics Investigation and Reflection Assignment Help

Submission: Mathematics Investigation and Reflection Assignment Help TurnitinFormat:Individual written document.Uses the current APA referencing style correctly.Length:2,000 wordsThreshold Detail:For this assessment task you must obtain at least 50% of the overall result (i.e. 25 points). If the total result for this unit is at least 50 points but you scored less

Read More »

FASS Research Proposal Template Assignment

FASS Research Proposal Template Word length2000 to 3000 wordsTitleUse a concise and descriptive title that accurately reflects the content of the proposal.Background context and significanceThis section should explain the background and context of the proposed research work,indicating the main contribution to knowledge you wish to make.Aims and objectivesInclude a clear

Read More »

Evidence to Inform Nursing Practice Assignment Help

Unit Code:   NURS12165 Unit Title:    Evidence to Inform Nursing Practice Assessment Three Type:                               Written Assessment Due date:                         Week 11: Wednesday, 28 May 2025 at 1600 (AEST) Extensions:                     Available as per policy Return date:                    Results for this assessment will be made available on Wednesday, 18 June 2025 Weighting:                       50% Length:                           

Read More »

NUR1120 | Burden of Disease and Health Equity

Assessment Item Task SheetCourse code andnameNUR1120 | Burden of Disease and Health Equity Assessment itemand nameAssessment Three | ReportDue date and time Week 11 | 22/04/2025 at 2359 hours AESTLength 1400 words (+/- 10% in each section) – includes in-text references, but not reference list.Marks out of:Weighting:80 Marks50%Assessed CourseLearning Outcomes(CLO)CLO1,

Read More »

PSY1040 Portfolio: Cultural Responsiveness & Self-Awareness

Course Code and NamePSY1040: An Introduction to Cultural Safety in PracticeAssessment Item Number and NameAssessment 2: PortfolioAssessment Item TypePortfolio PSY1040 Portfolio: Cultural Responsiveness & Self-AwarenessDue Date & TimeTuesday, 29 April 2025 (Week 12), 11:59pmLength2000 words – an average of 400 words per task.Marks and WeightingMarked out of: 100Weighting: 50%Assessed Course

Read More »

Innovative Digital App Development Report

OVERALL DESCRIPTION OF TYPE OF ASSIGNMENT Assessment 1- Type of Assignment Individual Written Report Details Individual Written Report 3,000 words (500 words of the Report is Contextualisation) Weighting of Assessment : 70% INDIVIDUAL MARK Learning outcomes assessed by Assessment: 1, 2, 3 and 4 – See Module Listings of Learning

Read More »

Tourism Trends and Investment Decisions: A Comparative Study

Assignment TaskYou are a strategist working for a major hospitality group based in Australia. The company is planninginternational expansion, and the board has asked you to compile a report to identify the most suitablelocation for the project. The board has shortlisted two international locations (which will be allocatedto you by

Read More »

EC502 Language and Literacy in the Early Years

EC502 Language and Literacy in the Early Years Unit Code/Description EC502 Language and Literacy in the Early Years Course/Subject Bachelor of Early Childhood Education Semester March 2025 Assessment Overview   Unit Learning Outcomes Addressed 1, 2, 3 Assessment Objective Assessment 1: Poster Including an Invigilated stage in Week 3. Due

Read More »

EC501 Early Childhood Learning and Development

Unit Code/Description EC501 Early Childhood Learning and Development Course/Subject Graduate Diploma in Education (early childhood) Semester S 1, 2025 Assessment Overview   Unit Learning Outcomes Addressed 1, 2, 3 Assessment Objective In this assessment, student are required to select one of the case studies provided and critically analyze the child’s

Read More »

JSB172: Professional Academic Skills

JSB172: Professional Academic SkillsAssessment: Workplace Report and Presentation Weight: 50%Due date: Friday 30th May 11:59pm Length: 1,750 words (+/- 10 %) / 5minutesPurpose/Learning Objectives:This assessment relates to Learning Outcomes 1, 2, 3, and 4: Task:Your task is to write a Workplace Report identifying how to address the topic/issue chosen or

Read More »

2015PSY Developmental Psychology Assignment

2015PSY Developmental Psychology Assignment 2025 2015PSY Developmental Psychology Assignment Assignment MaterialsAssignment Information Sheet & Marking Criteria.pdf (this document)Assignment Template.docx (template)Example Assignment.pdf (HD exemplar)Due Date: Friday 16 May, 11:59PM (Week 10)Weighting: Marked out of 100 (worth 30% of course grade)Word Count: 1,500 words maximum(inclusive of main text, headings, in-text citations; excluding

Read More »

Principles of Economics Federal Budget

Principles of Economics Short-answer Assignment V1 (20% of final mark) The assignment consists of four questions.  You should allocate at least half a page (or 250 words) to each answer or 1000 words for all four answers depending on the nature of and/or marks allocated for the question/s. You may

Read More »

LML6003 – AUSTRALIA’S VISA SYSTEM 1 (FAMILY AND OTHERVISAS)

Graduate Diploma in Migration Law LML6003 – AUSTRALIA’S VISA SYSTEM 1 (FAMILY AND OTHER VISAS) Assessment Task 2 – Semester 1, 2025 LML6003 – AUSTRALIA’S VISA SYSTEM 1 (FAMILY AND OTHERVISAS) Instructions: 1. Students must answer all questions as indicated. Make certain all answers are clearly labelled. 2. Make certain

Read More »

Construction Cadetships in the Australian Construction Industry

REPORT TOPICPrepare an Academic Report on the following:‘Construction Cadetships in the Australian Construction Industry’.The report should encompass the following: Your personal evaluation and critique of the key findings in your report including your evaluation of construction cadetships, yourfindings in relation to potential issues/problems with cadetships and your recommendations to improve

Read More »

Assessing Corporate Governance and its Significance

Assessing Corporate Governance and its Significance: A Case Study Analysis Overview: Accounting irregularities have cost investors millions of dollars and, most importantly, adversely impacted their confidence in the financial system. While there have been remarkable improvements in regulatory supervision, auditing framework and reporting transparency, young graduates must assess major corporate

Read More »

Master of Professional Accounting and Accounting Advanced

Assessment 2 – Business Case (CVP) AnalysisUnit Code/Description ACC901 Accounting for Managerial DecisionsCourse/Subject Master of Professional Accounting and Master of Professional Accounting AdvancedSemester S1 2025 Assessment Overview Unit Learning OutcomesAddressed1,2,3,4 and 5Assessment Objective The primary objective of this assessment is to assess the students’ ability to apply CVPanalysis and relevant

Read More »

Urban Design Theory Essay writing

Essays are a major form of assessment at university. Through essays, you develop your understanding of discipline-specific content, strengthen your critical thinking, and develop your ability to translate that thinking into a persuasive written form. This assignment assesses your understanding of the following Unit Learning Outcomes: 1) understand the historic

Read More »

Statutory Interpretation of Disability Discrimination in NSW Law

Foundations of Law 70102 – Assessment Task 3 – Autumn 2025Statutory Interpretation and Research ExerciseDue: Thursday 22 May 2025 by 23.59Length: 2000 words (excluding the headings Part A, Part B and Part C, footnotes andbibliography. Any additional headings that you decide to use will be included in the wordcount)Weighting: 40%Task

Read More »

Can't Find Your Assignment?