Creating a program for a pizza shop

Assignment Help Other Subject
Reference no: EM132128889 , Length: 750 Words

Comparative Programming Languages Assignment - Parallel Implementations

This assignment will test your skills in programming applications to specification in a number of different programming languages.

Assignment Overview - You are tasked with creating a program for a pizza shop -however, as this is a comparative languages course, you will be creating the same application in the following programming languages:

  • C,
  • Python,
  • Java and
  • Lisp.

As you implement the application in each language, you should keep notes on the features of the languages used, which you found useful, as well as any issues or complications which arose due to the complexity or lack of any language features. A brief discussion based on these programming features for each individual language accompanying each implementation is required. Finally, a comparative overview of the languages highlighting applicability based on your experience in the design, implementation and debugging of your code is also required.

If you foresee or encounter any complications, you may opt to implement or incorporate additional language features which may be lacking, i.e. data structures. This can be done via:

  • Your own implementation,
  • Through libraries, or
  • Via the incorporation of existing source code. You can use code found on the Internet, but use of any existing code must be referenced.

Program Specification -

Users may order one or more pizzas, where each pizza may be either: small, medium or large. Small pizzas cost $5, medium pizzas cost $8 and large pizzas cost $12. All pizzas come on a tomato base (for our pizza shop, this will be the only option), and will have the topping cheese by default, at no extra cost. Users may choose up to a maximum of four additional toppings (bringing the total to five) from the following list, where each topping adds an additional $1 to the price of the pizza:

  • Bacon,
  • Olives,
  • Ham,
  • Mushrooms,
  • Pineapple,
  • Salami,
  • Anchovies.

A pizza order consists of an order for one or more pizzas, where each pizza has a size, and may optionally include a list of up to four additional toppings.

Each pizza order must be marked as either to be collected or to be delivered.

If the pizza is to be collected then the order requires a name and a phone number to be valid.

If the pizza is to be delivered then a name, phone number and address are required to be valid. In addition, if the order total is less than $30 then an $8 delivery fee is added to the total.

The application must be error tolerant and capable of accepting keyboard input to store a number of pizza orders in memory (they do not have to be persisted to file), as well as displaying an order summary which include details of all orders, including:

  • The details of each pizza in the order,
  • The total cost of the order, and
  • The name, phone number and (if required) address of the person who made the order.

Attachment:- Assignment File.rar

Reference no: EM132128889

Questions Cloud

Outline the objectives developed across each experiment : ECTE344 Lab Report - Using the 13 laboratory objectives listed in the experiment one prelab activity outline the objectives developed across each experiment
Describe a situation in which you would use : Describe a situation in which you would use an extrinsic reward to motivate a preschooler.
What would you recommend to a parent who asks you : What would you recommend to a parent who asks you what he or she can do to promote his or her preschool child's self-regulation skills?
Describe the construction process : Assignment: Development of Sustainable Home with Net Zero Energy - Discuss the feasibility and challenges of implementing RH, and the ways to overcome
Creating a program for a pizza shop : ITECH5403 - Comparative Programming Languages Assignment - Parallel Implementations, Federation University, Australia. creating a program for a pizza shop
Write a program for the microcontroller : Write a program for the microcontroller that will enable a sequence of digits to be displayed onto the 7-segment display according to user selection
How organizational transition lead to organizational success : How Organizational Transition and Management Accounting perspectives Leads to Organizational Success. Chapter One Is "Research process designed - Introduction"
Assignment - Draft a literature review : Assignment - Draft a literature review - Providing in-depth analysis of the wider academic sources. Compare them as well as to identify their limitations
Impact of cryptocurrency on the luxury tourism industry : ITECH 1100 Video and Disruption Report Assignment, Federation University, Australia. topic - The potential impact of Cryptocurrency on Luxury Tourism Industry

Reviews

urv2128889

10/26/2018 3:27:05 AM

Thank you for this assignment. it is a wonderful experience with you and give full details of the assignment. thank you very much. I would like to give my assignment to you again thank you once more. I feel that the platform is professional and well sorted. Thank you. I strongly recommend your company to others.

urv2128889

10/26/2018 3:24:14 AM

Suggested Development Environments: Codeblocks for C '99 Code::Blocks can be downloaded from: http://www.codeblocks.org/downloads/binaries To create a new C project is:When you create a project, choose File | New and then Console Application, and then choose C as the programming language. IDLE for Python Python, including the IDLE development environment can be downloaded from: https://www.python.org/downloads/ Eclipse for Java 7 or Java 8 Eclipse may be freely downloaded from: http://www.eclipse.org/downloads/ Eclipse does not come with the Java JDK, which must the downloaded separately from: http://www.oracle.com/technetwork/java/javase/downloads/index.html Ensure that your Eclipse type and Java type match –i.e. 32-bit Java for 32-bit Eclipse, or 64-bit Java for 64-bit Eclipse. If you mix and match it won't work. GNU CLisp for Common Lisp CLISP 2.49 can be sourced from: http://sourceforge.net/projects/clisp/files/latest/download Any good text editor would be suitable for writing the source code. ITECH5403 – Comparative Programming Languages

len2128889

10/2/2018 3:46:57 AM

This assignment will test your skills in programming applications to specification in a number of different programming languages, and is worth 20% of your non-invigilated (type A) marks for this course. Submission and Marking Process - You must supply your program source code files and language suitability report documentation in as single compressed archive called: ITECH5403_Assignment_2_YOUR-NAME_YOUR-STUDENT-ID.zip. You may supply your programming language suitability report in either Word or LibreOffice/OpenOffice format in which the document can be edited – no proprietary Mac specific formats, please.

len2128889

10/2/2018 3:46:51 AM

Assignments will be marked on the basis of fulfilment of the requirements and the quality of the work. In addition to the marking criteria, marks may be deducted for failure to comply with the assignment requirements, including (but not limited to): Incomplete implementation(s), and Incomplete submissions (e.g. missing files), and Poor spelling and grammar. Submit your assignment (all program source files plus your discussion document) to the Assignment 2 Upload location on Moodle before the deadline of Friday of Week 11 at 4pm. The mark distribution for this assignment is explained on the next page.

len2128889

10/2/2018 3:46:45 AM

Implementation of the pizza shop program in the C programming language. Areas of note include: Use of data structures, Robust input handling which does not cause program termination if provided with bad data (i.e. program expects a number, gets given alphanumerical data). Discussion on implementation: Language features, issues and suitability. Implementation of the pizza shop program in the Python programming language. Areas of note include: Python Standard library, List mechanisms, Discussion on implementation: Language features, issues and suitability.

len2128889

10/2/2018 3:46:39 AM

Implementation of the pizza shop program in the Java programming language. Areas of note include: Object orientation mechanism / method calls, Error handling, Standard Java libraries, Discussion on implementation - Language features, issues and suitability. Implementation of the pizza shop program in the Lisp programming language. Areas of note include the Lisp: Use of recursion, lists, Inbuilt data structures. Discussion on implementation - Language features, issues and suitability. Documentation and discussion of the comparative ease of implementation (design / implement / debug) in each programming language, including how robustness issues were addressed.

Write a Review

Other Subject Questions & Answers

  Health care basics terminology

Need help with to get definition of terms and to translate and define the given abbreviations. In a short paragraph, share what you would consider the most significant aspect of each.

  Demonstrate an understanding of the ethical moral

Discuss the key ethical issues concerns raised in the article (this can include: corporate governance, corporate social responsibility, corporate citizenship

  Identify areas of weakness in the current law and practices

Identify areas of weakness in the current law and practices, and offer suggestions for society to improve. Include specific examples to support your reflection.

  New herbal supplement improves memory

A researcher hypothesizes that a new herbal supplement improves memory. A sample of n = 25 college students is obtained and each student takes the supplement daily for six weeks. At the end of the 6-week period, each student is given a standardize..

  Any other types of information besides financial

1 a)Are there any other types of information besides financial that may be useful in making financial decisions?b)Identify the major components of a corporate compliance plan, including the establishment of internal controls relating to the finances ..

  Some police officers cover for wrongdoing of other officer

Why do some police officers cover for wrongdoing of other officers? Explain why the culture of law enforcement might permit this to happen.

  Pressure ulcer in elderly population

What would be a great PICO question in relate to pressure ulcer in elderly population?

  Describe the hackers and cyber criminal organizations

Describe at least two (2) ways in which organized crime uses social media sites for its benefits. Next, speculate on the measures that the government could take in order to combat digital crimes perpetrated through social media sites. Provide a ra..

  Examine a federal or state social welfare policy

Identify and examine a federal or state social welfare policy that aims to address this social problem.

  Explain how you can present the issue in terms of economic

Explain how you can present the issue in terms of economic concepts and theoriesyou have learnt in class.

  Create an infographic using an infographic maker

Create an infographic using an infographic maker, such as Piktochart, Venngage, or Canva, displaying an organization chart showing the following.

  What did you learn about this child development

Identify other non-standardized assessments you would you like to complete. Explain why you selected the specific assessments and in what instance you would use these.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd