ICTPRG301 Apply introductory programming techniques SOA 1
Project assessment: Create simple applications
Unit code, name ICTPRG301 - Apply introductory programming techniques (1) Qualification/Course code, name 901-00007V01- Statement of Attainment Build your digital literacy with coding TAFE NSW
Assessment instructions
Table 1 Assessment instructions
Assessment details |
Instructions |
Assessment overview |
The objective of this assessment is to assess your knowledge and performance required to design, create and test simple applications. |
Assessment Event number |
1 of 2 |
Instructions for this assessment |
This is a project-based assessment and will be assessing you on your knowledge and performance of the unit. This assessment is in two parts: 1. Perform programming tasks 2. Create a game. The assessment also contains: · Assessment Checklist · Assessment Feedback. Check the Assessment and Observation checklists to ensure that you’ve covered all the required tasks. |
Submission instructions |
On completion of this assessment, you are required to upload it for marking. Ensure you have added your name in the footer of each file. Submit the following documents for each part: · Part 1: Perform programming tasks o Programming tasks plan o Algorithm (pseudocode or flowchart) for conference task o Python code for conference task o Modified scope code o Corrected marks code o Completed ROI Software test report for marks code. · Part 2: Create a game o Algorithm (pseudocode or flowchart) for game o Python code for game o Completed ROI Software test report for game. It is important that you keep a copy of all electronic and hardcopy assessments submitted to TAFE and complete the assessment declaration when submitting the assessment. |
What do I need to do to achieve a satisfactory result? |
To achieve a satisfactory result for this assessment all questions must be answered correctly and all items in the Assessment Checklist must be marked Satisfactory. |
What do I need to provide? |
· Computer, internet and login details. · You must be able to access: o a Python compiler o an integrated development environment (IDE). · USB drive or other storage method with enough free space to save work to. |
What the assessor will provide? |
Access to this assessment and relevant online documents will be provided in the online learning platform. |
Due date and time allowed |
Indicative time to complete assessment: · Three hours. |
Assessment feedback, review or appeals |
Appeals are addressed in accordance with Every Students Guide to Assessment. |
Specific task instructions
Scenario
You’re working as an IT Trainee for Red Opal Innovations (ROI_Scenario.pdf). Red Opal Innovations (ROI) has experienced impressive growth, expanding the business and its workforce, and recently developed its own intranet to provide services to its staff. Management has decided that they would like to improve the culture of the company and initiate strategies to enhance the satisfaction and morale of its staff.
After meeting with employee representatives, management has decided that they would like to provide opportunities for staff members to relax and have some time-out during their working day. The employee representatives have suggested that playing games would be a good way for staff members to help them relax and deal with the daily stresses of the work environment. They have also decided that some friendly competition between employees would enhance their motivation for playing the games. The company would also like to offer a prize for the employee with the best results.
They would like a game prototype to be developed as a forerunner to more sophisticated applications. Your supervisor thinks you would be able to handle this project however wants to test your skills first.
Download and unzip the resource folder (ICTPRG301_AE_Pro_1of2_SR1.zip), which contains additional documents referred to in Parts 1 and 2 of the assessment.
Part 1: Perform programming tasks
Your supervisor has given you several tasks to complete before working on the game prototype.
- Plan and prioritise tasks
Before starting the following tasks, create a plan of the activities you need to complete for the portfolio of tasks (this can be in a table in a word-processed document). This must be appropriately sequenced and prioritised, taking into account your own workload, to enable you to complete the tasks efficiently and effectively.
- Develop a simple application
Specification
Staff members are attending a conference. The conference runs for two days and staff members can attend either day, or both days.
- If they are attending for at least one day they will receive a conference pack.
- If they are attending for two days, they will also receive the bonus pack.
- Not all staff members will be attending.
The application must display:
- the date that the report was run at the top of the list
- a list of attendees and which packs they will receive.
Use the following format to display the information:
Report date: [dd/mm/yyyy]
Attendee: [Surname, first name] Pack/s: [1 or 2 days pack], [both days pack]
Two text files are provided as follows:
The confpack text file has two values on separate lines:
- Line 1 lists what the attendees will receive for attending either one or two days.
- Line 2 lists what the attendees will receive for attending both days.
The employees text file has values separated by commas. Each employee is on a new line.
- Values are surname,firstName,day1,day2
- The fields day1 and day2 will either have a value of Y or no value.
Tasks
- Develop an algorithm using pseudocode or a flowchart to:
- access the confpack text file and read the records into an array
- access the employees text file and loop through the records (checking for the end of file)
- use logical operators to select the appropriate conference attendees
- display the required information.
- Code the algorithm in Python, using a suitable library function for the date and appropriate variables and expressions.
- Apply variable scope
A programmer was given the following specifications for an application:
Specification
- Define a function to input your first name
- Call the function
- Display the name entered to the screen.
Task
They have written the code (scope.py), however it doesn’t output the correct value according to the specifications.
- Modify the variable scope in the program so that it runs according to the specifications.
- Debug code
A programmer was given the following specifications for an application:
Specification
Write a program that prompts the user to enter the marks of a student for five different subjects. The program will then perform a calculation to determine the average mark.
The application must do the following:
- Ask the user to input the marks for the five subjects in a list/array.
- Display the list/array of marks entered.
- Find the sum of all the marks in the list (all five subjects) and display the output as:
- The sum of your marks is: [sum]
- Find the average of all the marks in the list (all five subjects) and display the output as:
- The average of your marks is: [averagemark]
Task
They have written the code (marks.py) and tested it using the following data:
mark1 |
mark2 |
mark3 |
mark4 |
mark5 |
Expected sum |
Expected average |
Comments |
10 |
12 |
16 |
14 |
18 |
70 |
14 | |
A |
B |
D |
A |
C |
n/a |
n/a |
Exception error on input |
17 |
17 |
19 |
20 |
17 |
90 |
18 |
- Conduct a test using this data.
- Use debugging and problem-solving techniques, including tracing the code execution and examining the variables, to detect errors.
- Correct the errors in the code.
- Document the testing and the results using the ROI Software test report (ROI_Software_test_report.docx). Include screenshots of your debugging techniques. Note: To show this is your machine, use Sticky Notes (Windows) or an equivalent tool to record your name and ensure you capture the sticky note in the screen shot.
Part 2: Create a game
Read the Software Requirements Specification (Software_requirements_spec.pdf) for the game prototype.
- Design an algorithm
Design an algorithm using pseudocode or a flowchart to meet the program specifications. Your algorithm must use appropriate constructs.
- Develop the game
Develop the game according to your algorithm using Python. Ensure that you:
- comment your code clearly
- apply relevant programming techniques and constructs to create a clear and concise code
- use an appropriate library function.
- Test and evaluate the game
Test the game to ensure that it works correctly and according to the specifications. Document the following using the ROI Software test report (ROI_Software_test_report.docx).
- Create the test cases for testing.
- Conduct the testing and include screenshots. Note: To show this is your machine, use Sticky Notes (Windows) or an equivalent tool to record your name and ensure you capture the sticky note in the screen shot.
- Evaluate how well your software meets the software specifications. Include explanations of why you chose specific syntax in your coding and what criteria you used.
- Obtain sign-off
Demonstrate the game to your supervisor and:
- confirm that the game meets the software specifications
- obtain user sign-off, using your completed ROI Software test report.
Assessment Checklist
The following checklist will be used by your assessor to mark your performance against the assessment criteria of your submitted/presented project. Use this checklist to understand what skills and/or knowledge you need to demonstrate in your submission/presentation. All the criteria described in the Assessment Checklist must be met. The assessor may ask questions after the assessment has been submitted to clarify anything.
Table 2: Assessment Checklist
TASK/STEP # |
Instructions |
S |
U/S |
Assessor Comments |
Part 1.1 |
Creates a sequenced prioritised plan, referring to their own workload. | |||
Part 1.2.1 |
Develops an algorithm to meet program specifications using sequence, selection and iteration constructs | |||
Part 1.2.2 |
Applies correct Python syntax, operators, expressions and variables | |||
Part 1.2.2 |
Uses a library function | |||
Part 1.2.2 |
Applies correct Python syntax for sequence, selection and iteration constructs and uses logical operators | |||
Part 1.2.2 |
Reads from text files using end-of-file detection loops | |||
Part 1.2.2 |
Manipulates a string | |||
Part 1.3 |
Applies the variable scope according to requirements | |||
Part 1.4 |
Conducts testing | |||
Part 1.4 |
Uses debugging and problem-solving techniques to trace code execution and examine variables | |||
Part 1.4 |
Corrects the errors in the code | |||
Part 1.4 |
Documents the testing and results using the organisational document | |||
Part 2.1 |
Designs an algorithm to meet program specifications using appropriate constructs | |||
Part 2.2 |
Develops a game to meet program specifications | |||
Part 2.2 |
Applies correct Python syntax, operators, expressions, variables and constructs to create clear and concise code | |||
Part 2.2 |
Uses an appropriate library function | |||
Part 2.2 |
Uses clear commenting in code | |||
Part 2.2 |
Reads and writes a text file, including end-of-file detection loops | |||
Part 2.2 |
Manipulates a string | |||
Part 2.3.1 |
Creates a simple test to confirm game meets specifications | |||
Part 2.3.2 |
Conducts testing | |||
Part 2.3.3 |
Evaluates selection of syntax and software effectiveness | |||
Part 2.3 |
Documents the testing and results using the organisational document | |||
Part 2.4 |
Confirms that game meets specifications and obtains sign-off |
Assessment feedback
NOTE: Your assessor will give you feedback via the online learning platform. For manual feedback, this section must have the assessor’s signature and the student’s signature
Assessment outcome
☐ Satisfactory
☐ Unsatisfactory
Assessor feedback
☐ Was the assessment event successfully completed?
☐ If no, was the resubmission/re-assessment successfully completed?
☐ Was reasonable adjustment in place for this assessment event?
If yes, ensure it is detailed on the assessment document.
Comments:
Assessor name, signature and date:
Student acknowledgement of assessment outcome
Would you like to make any comments about this assessment?
Student name, signature and date
NOTE: Make sure you have written your name at the footer so it appears at the bottom of each page of your submission before attaching the cover sheet and submitting for marking.
Diploma Universities Assignments
Laureate International Universities Assignment
Holmes Institute Assignment
Tafe NSW
Yes College Australia
ACC508 Informatics and Financial Applications Task 2 T2, 2019
ACC512 Accounting
ACC520 Legal Regulation of Business Structures Semester 2, 2019
ACCT20074 Contemporary Accounting Theory Term 2 Assessment 3
AERO2463 Computational Engineering Analysis : Assignment 4
B01DBFN212 Database Fundamentals Assessment 1
BE01106 - Business Statistics Assignment
BFA301 Advanced Financial Accounting
BFA504 Accounting Systems Assessment 3
BSB61015 Advanced Diploma of Leadership and Management
BSBADV602 Develop an Advertising Campaign
BSBCOM603 Plan and establish compliance management systems case study
BSBCOM603 Plan and establish compliance management systems Assessment Task 1
BSBCOM603 Plan and establish compliance management systems Assessment Task 2
BSBCOM603 Plan and establish compliance management systems Assessment Task 3
BSBFIM501 Manage Budgets And Financial Plans Assessment Task 1
BSBHRM602 Manage Human Resources Strategic Planning
BSBINM601 Manage Knowledge and Information
BSBWOR501 Assessment Task 3 Plan Personal Development Plan Project
BSBMGT517 Manage Operational Plan
BSBWHS521 Ensure a Safe Workplace For a Work Area
BSBWRK510 Manage employee relations
BUSS1030 Accounting, Business and Society
CAB202 Microprocessors and Digital Systems Assignment Help
CHC40213 Certificate IV in Education Support
CHCAGE001 Facilitate the empowerment of older people
CHCAGE005 Provide support to people living with dementia
CHCCCS023 Support independence and wellbeing
CHCCCS025 Support relationships with carers and families
CHCCOM005 Communicate and CHCLEG001 Work Legally Ethically
CHCDIS002 Follow established person-centred behaviour supports
CHCECE019 Early Childhood Education and Care
CHCHCS001 Provide home and community support services
COMP10002 Foundations of Algorithms
COMP90038 Algorithms and Complexity
COSC2633/2637 Big Data Processing
COSC473 Introduction to Computer Systems
CPCCBC5011A Manage Environmental Management Practices And Processes In Building And Construction
CPCCBC5018A Apply structural Principles Medium rise Construction
CSE3OSA Assignment 2019
ELEC242 2019 Session 2
ENN543 Data Analytics and Optimisation
ENN543 Data Analytics and Optimisation Semester 2, 2019
FINM202 Financial Management Assessment 3 Group Report
Forensic Investigation Case Assignment ECU University
HA2042 Accounting Information Systems T2 2019
HC1010 Holmes Institute Accounting For Business
HC2112 Service Marketing and Relationship Marketing Individual Assignment T2 2019
HC2121 Comparative Business Ethics & Social Responsibility T2 2019
HI5002 Holmes Institute Finance for Business
HI5003 Economics for Business Trimester 2 2019
HI5004 Marketing Management T1 2020 Individual Report
HI5004 Marketing Management T1 2020 Group Report
HI5004 Holmes Institute Marketing Management
HI5014 International Business across Borders Assignment 1
HI5014 International Business across Borders
HI5017 Managerial Accounting T2 2019
HI5017 Managerial Accounting T1 2019
HI5019 Tutorial Questions 1
HI5019 Strategic Information Systems for Business and Enterprise T1 2020
HI5019 Holmes Institute Strategic Information Systems T2
HI5019 T2 2019
HI5019 T1 2019
HI5020 Corporate Accounting T3 2019
HI5020 Corporate Accounting T2 2019
HI6005: Management and Organisations in a Global Environment
HI6006 Tutorial questions
HI6006 Competitive Strategy Individual T1 2020
HI6006 Holmes Institute Competitive Strategy
HI6006 Competitive Strategy T3 2019
HI6007 Statistics for business decisions
HI6007 Assessment 2 T1 2020
HI6007 T1 2019
HI6008 T2 2019
HI6008 Holmes Institute Research Project
HI6025 Accounting Theory and Current Issues
HI6026 Audit, Assurance and Compliance Assignment Help
HI6026 Audit, Assurance and Compliance
HI6027 business and corporate law tutorial Assignment T1 2021
HI6027 Business and Corporate Law T3 2019
HI6027 Business and Corporate Law T2 2019
HI6028 Taxation Theory, Practice and Law T2 2021
Hi6028 taxation theory, practice and law Final Assessment t1 2021
HI6028 Taxation Theory, Practice and Law T2 2019
HI6028 Taxation Theory T1 2019
HI6028 Taxation Law Holmes
HLTAAP001 Recognise healthy body systems
HLTWHS002 Follow safe practices for direct client care
HOTL5003 Hotel Property and Operations
HPS771 - Research Methods in Psychology A
HS2021 Database Design
ICTICT307 Customise packaged software applications for clients
IFN619 Data Analytics for Strategic Decision Makers
INF80028 Business Process Management Swinburne University
ISY2005 Case Assignment Assessment 2
ISYS326: Information Systems Security Assignment 2, Semester 2, 2019
ITAP3010 Developing Data Access Solutions Project
ITECH1103- Big Data and Analytics – Lab 3 – Working with Data Items
ITECH1103- Big Data and Analytics Assignment Semester 1, 2020
ITECH 5500 Professional Research and Communication
Kent Institute Australia Assignment
MA5830 Data Visualisation Assignment 2
MGMT7020 Project Management Plan
Mgt 301 Assessment 3
MGT215 Project Management Individual Assignment
MIS102 Data and Networking Assignment Help
MITS4002 Object Oriented Software Development
MITS5002 Software Engineering Methodology
MKT01760 Tourism Planning Environments Assessment 4
MKT01760 Tourism Planning Environments
MKT01906 International Tourism Systems
MKT5000 Marketing Management S2 2019
MNG03236 Report Writing SCU
MRE5003 Industrial Techniques In Maintenance Management Assignment 4
MRE5003 Industrial Techniques In Maintenance Management Assignment 3
MRE5003 Industrial Techniques In Maintenance Management
Network Security and Mitigation Strategies Answers
NIT2213 Software Engineering Assignment
NSB231 Integrated Nursing Practice Assessment Task 1
Science Literacy Assessment 4
SIT323 Practical Software Development T 2, 2019
SIT718 Using aggregation functions for data analysis
SITXCOM002 Show Social and Cultural Sensitivity
TLIL5055 Manage a supply chain
TLIR5014 Manage Suppliers
USQ ACC5502 Accounting and Financial Management
UTS: 48370 Road and Transport Engineering Assessment 2
CHCAGE001 Facilitate the empowerment of older people
CHCAGE005 Provide support to people living with dementia
CHCCCS011 Meet personal support needs
CHCCCS015 Provide Individualised Support
CHCCCS023 Support independence and wellbeing
CHCCCS025 Support relationships with carers and families
CHCCOM005 Communicate and work in health or community services
CHCDIS001 Contribute to ongoing skills development
CHCDIS002 Follow established person-centred behaviour supports
CHCDIS003 Support community participation and social inclusion
CHCDIS005 Develop and provide person-centred service responses
CHCDIS007 Facilitate the empowerment of people with disability
CHCDIS008 Facilitate community participation and social inclusion
CHCDIS009 Facilitate ongoing skills development
CHCDIS010 Provide person-centred services
CHCDIV001 Work with diverse people
CHCHCS001 Provide home and community support services
CHCLEG001 Work legally and ethically
CHCLEG003 Manage legal and ethical compliance
HLTAAP001 Recognise healthy body systems
HLTAID003 Provide First Aid
HLTHPS007 Administer and monitor medications
HLTWHS002 Follow safe work practices for direct client care
Assignment 2 Introduction to Digital Forensics
MGT603 Systems Thinking Assessment 1
MGT603 Systems Thinking Assessment 2
Hi5017 Managerial Accounting T1 2021
HI6028 Taxation Theory, Practice and Law T1 2021
OODP101 Assessment Task 3 T1 2021
ITNE2003R Network Configuration and Management Project
Australia Universities
ACT
Australian Catholic University
Australian National University
Bond University
Central Queensland University
Charles Darwin University
Charles Sturt University
Curtin University of Technology
Deakin University
Edith Cowan University
Flinders University
Griffith University
Holmes Institute
James Cook University
La Trobe University
Macquarie University
Monash University
Murdoch University
Queensland University of Technology
RMIT University
Southern Cross University
Swinburne University of Technology
University of Adelaide
University of Ballarat
University of Canberra
University of Melbourne
University of Newcastle
University of New England
University of New South Wales
University of Notre Dame Australia
University of Queensland
University of South Australia
University of Southern Queensland
University of Sydney
University of Tasmania
University of Technology Sydney
University of the Sunshine Coast
University of Western Australia
University of Wollongong
Victoria University
Western Sydney University
Year 11 - 12 Certification Assignment
Australian Capital Territory Year 12 Certificate
HSC - Higher School Certificate
NTCE - Northern Territory Certificate of Education
QCE - Queensland Certificate of Education
SACE - South Australian Certificate of Education
TCE - Tasmanian Certificate of Education
VCE - Victorian Certificate of Education
WACE - Western Australia Certificate of Education
Assignment Service Australia | CDR Writing Help | TAFE Assignment Help | Perth Assignment Help | Melbourne Assignment Help | Darwin Assignment Help | Adelaide Assignment Help | Assignment Help Victoria | Sydney Assignment Help | Canberra Assignment Help | Brisbane Assignment Help | CDR for Australian immigration | Course For Australian History