Principles of Programming: Business Case Study

Principles of Programming: Business Case Study

Subject:  : Principles of Programming

ASSESSMENT 1 :  Business Case Study

Length :  1500 Words (+/- 10%) or equivalent including source code and comments and 1 flow chart

References : NO REFERENCES

Due Date: 19/07/2023

Task Summary

 In this assessment, you are required to undertake three tasks. For each task, it is required that you implement a Python program to solve a business problem presented.

Context

 Using programming skills to make informed business decisions is becoming increasing important in the current information era. The speed in which this can be achieved is also desirable in the fast‐ paced business environment. Businesses and organizations rely heavily on computer programs to better understand and analyze data. This assessment assesses your skills in designing and developing computer programs using procedural programming techniques to address business needs.

Task Instructions

 You are now to develop a program using Python. The program must comprehensively include all the functional requirements described in the case study. The program must also satisfy the conditions discussed in the Case Study. There is NO minimum length to your Python codes, but you need to make sure to have enough functionality in your programs to address the business needs in the case study.

Note

• You may use any Python IDE to develop and test your Python programs.

Case Study

Online ordering has enabled many restaurants to manage their peak business hours very effectively. Thanks to online ordering, many people manage to prevent the painful experience of wasting time in a long queue. A2C is one of the biggest restaurant chains in Australia. They decided to offer their customers a convenient and contactless mobile ordering solution in response to the growing business need and COVID restrictions. As part of the development team in the SAS software solutions, you are required to design and develop the mobile ordering program. Before the application release deadline, you are required to submit the following deliverables:

  1. A design of the application process using a Flow Chart diagram
  2.  Python program for the three tasks as per the description that follows in this document.

Program Description

Program Description: In this program you have to create a mobile ordering application for a restaurant. The restaurant has variety of cuisines to offer their customers. When the program starts, the user is given the following options:

  1. Sign up
  2.  Sign in
  3.  Quit application

 Output:

Please Enter 1 for Sign up
Please Enter 2 for Sign in
Please Enter 3 for Quit

Your program should keep running and enable multiple users to sign up and log in, until the quit application option is selected.

Output: If User enters 3

Thank You for using the Application

Task 2A:

  1. To start using the mobile app, users should signup an account. You are required to create a Python program for the signup process. The users will be asked to enter their full name, contact number, date of birth, password, and password confirmation. 1. The signup process will not be successful until: a. The mobile number has 10 digits starting with 0. b. The Password must initiate with alphabets followed by either one of @, & and ending with numeric. (For Example: Sam@0125, Sam&25) c. The password confirmation matches the initial entered password. d. The DOB is in the format DD/MM/YYYY e. The user is at least 16 years old. The age should be calculated based on the year entered in the DOB (Only consider year).
  • If any of the above-mentioned condition is not fulfilled; the sign-up process should fail, and descriptive message should be displayed for the user explaining what has gone wrong and providing hints on the correct expected input. The program should keep asking the user to re-enter his details as long as one or more of the input fields are not correctly entered. If all fields are entered successfully, the program should stop asking the user to re-enter his details and display a message that the signup process has been completed successfully. If any field is entered incorrectly, some examples of sample outputs are given below.

Output 1:

You have entered the Date Of Birth in invalid format Please start again:

Output 2:

Your passwords are not matching Please start again:
  • If all of the above-mentioned conditions are successful, the user data is saved in appropriate data structure (Hint: List can be used) to enable data checks during the login process described in Task 2.
Please enter your name : Sam John Please enter your mobile number: 0445544554 Please enter your password: Sam@21 Please confirm your password: Sam@21   Please enter your date of Birth #DD/MM/YYYY (NO SPACE): 21/01/1990 You have successfully signed up Please enter 1 for sign up Please enter 2 sign in Please enter 3 for Quit  

Task 2B: In continuation to task 2A, you are required to write a python program to allow the signed-up users to Login the application: User must be asked to select from one of the 2 options from Signup or Login, until he selects the option to exit from the application.

Output:

Please enter 1 for sign up Please enter 2 sign in Please enter 3 for Quit  

During the signup, same process must be applied as mentioned in task 1. The Application must save the User’s information of all the Successful Signups in the appropriate data structure (Hint: List can be used), for verification purposes. Please try your program with multiple signups at once to ensure the login details are saved for verification purposes. During the login the program must verify the user id and password before confirming the user for successful login. Once the login is successful the user’s name must be displayed in the greeting message. After the login the user must be asked the options to sign-out and reset the password.

Please enter your Username (Mobile Number): 0445544554 Please enter your password: Sam@21 You have successfully Signed in Welcome Sam John Please enter 1 for Resetting the password Please enter 2 for signout.

If the user has not signed up with the entered username (mobile number), the program must ask the user to sign up first.

Output:

Please enter your Username (Mobile Number): 0445544444   Please enter your password: Sam@99 You have not signed up with this contact number, please sign up first Please enter 1 for sign up Please enter 2 sign in Please enter 3 for Quit  

If the user selects the Sign-out option, the user is back to the home screen with the options of Signup, Sign in and Quit

Please enter 1 for sign up. Please enter 2 sign in. Please enter 3 for Quit.  

Task 2C: – In Continuation to Task 2B: Resetting the password Part 1 – Reset Password from Menu Post Login the user must be shown an option to reset the password, and sign-out, where the user must enter his username, old password, and new password.

Output:

Please enter your Username (Mobile Number): 0445544554 Please enter your password: Sam@21 You have successfully Signed in Welcome Sam John Please enter 1 for Resetting the password Please enter 2 for sign out

When user enter 1:

Output:

Please enter your Username (Mobile Number): 0445544554 Please enter your old password: Sam@21 Please enter your  new password: Sam@44 You have successfully Signed in Please enter 1 for Resetting the password Please enter 2 for sign out

After the verification of username and old password, the new password must be saved in the appropriate data structure (Hint: List can be used)

Part 2 – Reset Password due to Unsuccessful Login attempts User is allowed with only 3 attempts for unsuccessful login, and then must be shown the option to reset the password. During the reset password the user must be asked to enter the username (mobile number), which must be verified before asking the user to enter his DOB. Once the DOB is verified with the details saved in the memory, the user must be provided with the option to enter a new password, in the provided format. If valid, the user’s password must be replaced with the previously entered password, and if not the process of resetting the password must be restarted from entering the username and password.

Output:

Please enter your Username (Mobile Number): 0445544554 Please enter your old password: Sam@25 You have entered the wrong password. Please try again Please enter your Username (Mobile Number): 0445544554 Please enter your password: Sam@88 You have entered the wrong password. Please try again You have used the maximum attempts of login Please reset the password by entering the below details:    
Please enter your Username (mobile Number) to confirm:0445544554 Please enter your Date of Birth in DD/MM/YYYY format, to confirm: 21/01/1990 Please enter your new password:Sam@99 Please re-enter your new password:Sam@99 Your password has been reset successfully   Please enter 1 for Sign up Please enter 2 for Sign in Please enter 3 for Quit.      

The user is not allowed to set a password, which he has used previously

Output:

You have used the maximum attempts of login: Please reset the password by entering the below details: Please enter your Username (mobile Number) to confirm:0445544554 Please enter your Date of Birth in DD/MM/YYYY format, to confirm: 21/01/1990 Please enter your new password:Sam@21 Please re-enter your new password:Sam@21 You can not use the password used earlier   Please enter 1 for Sign up Please enter 2 for Sign in Please enter 3 for Quit  
Order Now

Get expert help for Principles of Programming: Business Case Study and many more. 24X7 help, plag free solution. Order online now!

Universal Assignment (July 1, 2025) Principles of Programming: Business Case Study. Retrieved from https://universalassignment.com/principles-of-programming-business-case-study/.
"Principles of Programming: Business Case Study." Universal Assignment - July 1, 2025, https://universalassignment.com/principles-of-programming-business-case-study/
Universal Assignment July 17, 2023 Principles of Programming: Business Case Study., viewed July 1, 2025,<https://universalassignment.com/principles-of-programming-business-case-study/>
Universal Assignment - Principles of Programming: Business Case Study. [Internet]. [Accessed July 1, 2025]. Available from: https://universalassignment.com/principles-of-programming-business-case-study/
"Principles of Programming: Business Case Study." Universal Assignment - Accessed July 1, 2025. https://universalassignment.com/principles-of-programming-business-case-study/
"Principles of Programming: Business Case Study." Universal Assignment [Online]. Available: https://universalassignment.com/principles-of-programming-business-case-study/. [Accessed: July 1, 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?