Categories
Writers Solution

What sort of information should be provided to Mr. and Mrs. Harris, prior to them completing the fact finder, with regards to personal information and other warnings?

 Determine client financial requirements and expectations
Assessment 2 – Performance

Page 1 of 7
Instructions to complete this assessment
In order to complete this assessment, you are required to complete the following sections consecutively. Details and specific instructions are provided within each section and on the form/templates provided.
Supporting documents
To find the relevant supporting documents, please refer to the Assessment Resources folder, located within the FNSFPL506 Determine client financial requirements and expectations section of your course. (Note: Not all units have assessment resources.)
Section 1 – Review the Fact Finder – Mr and Mrs Harris
Requirements
Download and analyse ‘Fact Finder – Mr and Mrs Harris’, located in the Assessment Resources folder.
Section 2 – Assessment Responses
Now complete each of the following steps:
1. What sort of information should be provided to Mr. and Mrs. Harris, prior to them completing the fact finder, with regards to personal information and other warnings?
2. Identify any missing, or incomplete information, which may be relevant, when preparing a statement of advice for Mr. and Mrs. Harris.
3. Express Mr. and Mrs. Harris’ aims and objectives as SMART goals.
Current Goal Expressed as a SMART Goal
4. From the fact finder, summarise the key financial strategy areas that your advice will need to encompass to achieve Mr. and Mrs. Harris’ aims and objectives.
Strategy Reason for Strategy

GET THE COMPLETED ASSIGNMENT

ASSIGNMENT COMPLETED AT CapitalEssayWriting.com

MAKE YOUR ORDER AND GET THE COMPLETED ORDER

CLICK HERE TO ORDER THIS PAPER AT CapitalEssayWriting.com ON  What sort of information should be provided to Mr. and Mrs. Harris, prior to them completing the fact finder, with regards to personal information and other warnings?

NO PLAGIARISM, Get impressive Grades in Your Academic Work

Categories
Writers Solution

Completing our Programming Projects using Code Check. Nothing is required by you to use this program.

You will use what you have learned from Chapters 1 and 2 in Big Javascript Late Objects to complete the following programs.  Use what you have learned about the Scanner class, Constants, variables, printf, and Strings to complete the project. 

Remember to watch the Lecture Videos and additional videos in iCollege for examples on these topics and how to comment your program correctly.  **Please do not use any advanced material that is not in Chapters 1 or 2.

We will be completing our Programming Projects using Code Check.  Nothing is required by you to use this program.  For each project, I will provide a URL that will take you to the project to complete.  Once you have completed the coding project(s) (you have unlimited attempts), you will download the Report from the Code Check website and upload this zipped file(s) to this Assignment folder.  Inside this zipped file will be your completed code and your *calculated score based on testing.  You may use your IDE (jGrasp/Eclipse) to write the code and then copy and paste over to Code Check, if desired.

*The calculated score will be located at the bottom of your submission in the form of (for example) “5/5 = 100%”, “4/5 = 80%”, “3/5 = 60%”, etc.  IF YOU DO NOT obtain 100%, I encourage you to reach out for help on the Problem & Solutions Blog with your error messages so others can help.  You can also view the “Common Code Check Errors” document located in iCollege.  Please make sure you have viewed the “How to Use Code Check” video before starting.

TakeoutOrder.java

We will be writing a simple program to model a take out fast food order.  Once we have the user’s name and food order, we will output the “check” or “receipt” with the total purchase.

The following are sample runs of the program to help you write your code and format your output.  Please make note of “blank” lines in between output statements.  It must match exactly to pass the Code Check tests.

Sample Output 1:

Welcome to Burger Hut. We sell hamburgers, cheeseburgerssmall fries, large fries, and one size drink.Once you have placed your order, your receipt will print.

Please enter your first name: JamiePlease enter your last name: HowardsEnter how many hamburgers to order: 1Enter how many cheeseburgers to order: 2Enter how many small fries to order: 2Enter how many large fries to order: 1Enter how many drinks to order: 3

               Burger Hut             <– Notice the indented name and date           6/28/2021 5:51 PM

Howards, J          <– Notice the left-aligned last name, first initial and totalTotal: $27.40

     \\Thank you and come again!//    <– Notice the indented goodbye message and \\ //

Sample Output 2:

Welcome to Burger Hut. We sell hamburgers, cheeseburgerssmall fries, large fries, and one size drink.Once you have placed your order, your receipt will print.

Please enter your first name: ArianellePlease enter your last name: WalkersonEnter how many hamburgers to order: 0Enter how many cheeseburgers to order: 4Enter how many small fries to order: 3Enter how many large fries to order: 1Enter how many drinks to order: 5

               Burger Hut           6/28/2021 5:51 PM

Walkerson, ATotal: $39.05

     \\Thank you and come again!//

Instructions for Part 1:

  1. Go to the following URL to complete the project: Programming Project 1
  2. If using and IDE (jGrasp or Eclipse), create a new class file named TakeoutOrder.Javascript with a main method.
  3. You will be filling in code everywhere you see the ellipses (. . .) in the code.  Please follow the instructions and use the Sample Outputs to guide you.
  4. Write the Class comment and @author and @version tags
  5. Declare and initialize 5 Constants for:
    1. The cost of a hamburger is 4.75
    2. The cost of a cheeseburger is 4.95
    3. The cost of a small fry is 1.00
    4. The cost of a large fry is 2.50
    5. The cost of a drink (one size only) is 2.75 
      • Remember to name your Constants according to Javascript standards using ALL_CAPS.
  6. Use a series of println statements to output the “Greeting” message (see Sample Output)
  7. The prompt for the user’s first name is already included in Code Check.  Create a variable to store the input for the first name and use a Scanner method to read the value from the Console.
  8. The prompt for the user’s last name is already included in Code Check.  Create a variable to store the input for the last name and use a Scanner method to read the value from the Console.
  9. Following the example of Steps 7 & 8, write the prompts for each food item and create variables to store the inputs.  Use Scanner methods to read in the values from the Console.  (You will have 5 more prompt and input statements.)
  10. Using only existing variables and Constants, calculate the total cost of the bill (receipt).  No *magic* numbers here – use the variables and constants only.
  11. Using printf statements, output the Restaurant name (Burger Hut) and the date and time (6/2/8/2021 5:51 PM) indented.  *Note: To indent the output in, you will need a numerical value in your printf statement before the ‘s’ in %s  (see p. 52).  You can judge how far in to indent by comparing the ‘B’ in Burger to the line above it – notice it is under the ‘d’ in drinks.
  12. Using a println statement, output the last name, first initial of the user.
  13. Using printf statements, output the total with 2 decimal places (see p. 52) and the goodbye message indented .  Again, use the method of Step 11 to judge how far to indent.  You will also need the \\ and // in the message, so please make sure to look at Escape Sequences.
  14. Submit your code in Code Check and check the results of the tests. Please correct any error messages or output formatting issues.
  15. Once you have everything correct, download the zipped file and then upload to this Assignment folder.  You should see a “Download” button that looks like this that will give you a zipped file containing your code and test data: 

Testing and Submitting

Once you have thoroughly tested your program, please upload the zipped file only to this Programming Project 1 folder.

You will be graded on:

  1. Neatness of code and use of proper indentation of 4 spaces, 8 spaces, etc.  This is the Checkstyle part of your Report.
  2. Commenting of code – including class comment, @author, @version, and code comments. This is the Checkstyle part of your Report.
  3. Good use of constant and variable names – they should be descriptive names and not individual characters or abbreviations.  Ex.  FINAL_COST or firstName. This is the Checkstyle part of your Report.
  4. Output is correct and matches the Sample Output for all tests that executed on your code in Code Check.  This is the Test 1, Test 2, etc. part of your Report.  They must say “Pass”.
  5. Correct calculations using variables and constants (i.e. the math is correct).  This is the Test 1, Test 2, etc. part of your Report.
  6. My visual inspection of your code.  I will be checking for good variable and constant names and well as good indenting of code.  Instructor reserves the right to make adjustments to the Code Check score based on inspection

GET SOLUTION FOR THIS ASSIGNMENT

CLICK HERE TO MAKE YOUR ORDER

TO BE RE-WRITTEN FROM THE SCRATCH

NO PLAGIARISM

  • Original and non-plagiarized custom papers- Our writers develop their writing from scratch unless you request them to rewrite, edit or proofread your paper.
  • Timely Deliverycapitalessaywriting.com believes in beating the deadlines that our customers have imposed because we understand how important it is.
  • Customer satisfaction- Customer satisfaction. We have an outstanding customer care team that is always ready and willing to listen to you, collect your instructions and make sure that your custom writing needs are satisfied
  • Confidential- It’s secure to place an order at capitalessaywriting.com We won’t reveal your private information to anyone else.
  • Writing services provided by experts- Looking for expert essay writers, thesis and dissertation writers, personal statement writers, or writers to provide any other kind of custom writing service?
  • Enjoy Please Note-You have come to the most reliable academic writing site that will sort all assignments that that you could be having. We write essays, research papers, term papers, research proposals. Misuse of Department Property

Get Professionally Written Papers From The Writing Experts 

Green Order Now Button PNG Image | Transparent PNG Free Download on SeekPNG Our Zero Plagiarism Policy | New Essays
Categories
Writers Solution

Consider a project such as moving to a new neighborhood, completing a long-term school assignment, or even cleaning your bedroom

Assigned Readings:Chapter 9. Project Scheduling: Networks, Duration Estimation, and Critical Path Initial Postings: Read and reflect on the assigned readings for the week. Then post what you thought was the most important concept(s), method(s), term(s), and/or any other thing that you felt was worthy of your understanding in each assigned textbook chapter.Your initial post should be based upon the assigned reading for the week, so the textbook should be a source listed in your reference section and cited within the body of the text. Other sources are not required but feel free to use them if they aid in your discussion.Also, provide a graduate-level response to each of the following questions:

  1. Consider a project such as moving to a new neighborhood, completing a long-term school assignment, or even cleaning your bedroom.  Develop a set of activities necessary to accomplish that project, and then order them in a precedence manner to create sequential logic.  Explain and defend the number of steps you identified and the order in which you placed those steps for best completion of the project.

[Your post must be substantive and demonstrate insight gained from the course material. Postings must be in the student’s own words – do not provide quotes!]  [Your initial post should be at least 450+ words and in APA format

Text

Title: Project Management 

ISBN: 9780134730332 

Authors: Pinto 

Publisher: Pearson 

Edition: 5TH 19

  • GET SOLUTION FOR THIS ASSIGNMENT

    CLICK HERE TO MAKE YOUR ORDER

    TO BE RE-WRITTEN FROM THE SCRATCH

    NO PLAGIARISM

    • Original and non-plagiarized custom papers. Our writers develop their writing from scratch unless you request them to rewrite, edit or proofread your paper.
    • Timely Delivery. capitalessaywriting.com believes in beating the deadlines that our customers have imposed because we understand how important it is.
    • Customer satisfaction. Customer satisfaction. We have an outstanding customer care team that is always ready and willing to listen to you, collect your instructions and make sure that your custom writing needs are satisfied
    • Privacy and safety. It’s secure to place an order at capitalessaywriting.com We won’t reveal your private information to anyone else.
    • Writing services provided by experts. Looking for expert essay writers, thesis and dissertation writers, personal statement writers, or writers to provide any other kind of custom writing service?
    • Enjoy our bonus services. You can make a free inquiry before placing and your order and paying this way, you know just how much you will pay. completing a long-term school assignment, or even cleaning your bedroom
    • Premium papers. We provide the highest quality papers in the writing industry. Our company only employs specialized professional writers who take pride in satisfying the needs of our huge client base by offering them premium writing services.

    Get Professionally Written Papers From The Writing Experts 

    Green Order Now Button PNG Image | Transparent PNG Free Download on SeekPNG Our Zero Plagiarism Policy | New Essays