IFQ555: Introduction to ProgrammingAssignment overview
IFQ555: Introduction to ProgrammingAssignment overview
Word limit:1040 lines
This assignment contains small programming exercises, designed to test your skills and develop the ability to design and code to solve small tasks.
*You need to zip all of your Visual Studio project files and submit the zipped file.
This assignment supportsunit learning outcomes 2, 3 and 4.
Assignment details
The following real-world problem needs to be solved as a small programming exercise.
Queensland State hosts the Queensland Idol competition each summer during the state fair. The talent competition takes place over a three-day period during which contestants are eliminated following rounds of performances until the years ultimate winner is chosen.
Task 1
Write a program namedQueenslandCompetitionAppby completing the following steps:
Step 1: Programthe app to display the competition motto which is'The stars shine in Queensland'. Make the motto to be surrounded by a border composed of asterisks and hash special characters.
Step 2: Checkthat your program does not have any compilations/execution errors.
Assignment overview
Word limit:1040 lines
This assignment contains small programming exercises designed to test your skills and develop your ability to design and code to solve small tasks.
*You need to zip all of your Visual Studio project files and submit the zipped file.
This assignment supportsunit learning outcomes 2, 3 and 4.
Assignment details
The following real-world problem needs to be solved as a small programming exercise.
Queensland State hosts the Queensland Idol competition each summer during the state fair. The talent competition takes place over a three-day period during which contestants are eliminated following rounds of performances until the years ultimate winner is chosen.
Task 2
Write a program namedQueenslandCompetitionAppthat performs/allows the following:
Prompts the user for the number of adult, child, and senior tickets that have been sold.
Allows the user to enter valid values so the program checks for a valid value. E.g. If each adult ticket costs $20.00, each child ticket costs 50% of the adult ticket and a senior ticket costs 70%.
Computes and displays the revenue from selling tickets for the competition.
Displays the output in currency format.
Step 1: Readthe assignment detail and assignment task to understand the requirement before you start coding.
Step 2: Developyour application using simple logic.
Step 3: Testyour code using yourown test datacovering multiple cases.
Step 4: Checkthat your program does not have any compilations/execution errors.