Our Services

Get 15% Discount on your First Order

[rank_math_breadcrumb]

Week 5: Instructions: The Test Plan for each project includes the Pseudocode, Flowchart, Goals and Objectives, Functional Requirements, and Test Matrix including Actual Output column. Below the table

Week 5:

Instructions:

The Test Plan for each project includes the Pseudocode, Flowchart, Goals and Objectives, Functional Requirements, and Test Matrix including Actual Output column.  Below the table are screenshots verifying the actual output for each case.

Week 5 Notes – Loops ( while, do-while, and for )

Let us recall our Week 4 Notes:   We are using Mathematical Functions, Characters and Strings.  We will be using these again for our Projects in Week 5.

For Week 5, we again have 3 graded items due this week:

  1. Week 3 Discussion, (2) Week 3 textbook tasks, with quizzes and Projects 3 & 5, (3) Test Plans

Our Test Plan has 5 parts, in order:  (1) Pseudocode, (2) Flowchart, (3) Goals & Objectives, (4) Functional Requirements, the (5) Test Matrix/table (simplified), and Output (screenshots from your own output).   Your Output also appears under Actual Output in your table.   We can find more on flowcharting with Loops here, for example:   Flowcharting For and While loops

Our Tasks this Week

You may have worked with Loops in another language, and they work exactly the same way in any language.  The while loop tests at the top of the loop (pretest), the do-while checks at the bottom of the loop (posttest), and the for loop also checks at the top and works best when we know the exact number of repetitions (sometimes input by the user).

Discussion:  We show examples of pretest and posttest loops.

Test Plan:   Refers to Projects 1 and 6 in Chapter 5.   See above for exact format.

Projects and Quizzes:

For Project 1:  Our “sample run” shows us exactly what the program must do.  We can use these “sample runs” for cases in our test matrix/table and for our screenshots of actual output from our program, demonstrating that the program works precisely as required. 

Example:  Sample Run 1: 

Enter an integer, the input ends if it is 0: 1 2 -1 3 0

The number of positives is 3

The number of negatives is 1

The total is 5.0

The average is 1.25 

As with any program, there is more than one way to accomplish the task.  If there’s a problem with the textbook grading, please let me know. 

Hints: 

Notice that the user could simply enter 0, with no numbers, and the program must quit. What type of loop is needed to do this?

How do we get user input on the same line with the prompt, as shown in the sample run?  We can use System.out.print rather than println to prompt the user.           

In our table, we can use this input as one of our cases, showing Expected Output and Actual Output.   Actual Output comes from our screenshot when we run our program.  It should have exactly the same format as shown in “sample run 1.” 

For Project 6:

ISBN-13 is a new standard for identifying books.    It uses 13 digits

d1d2d3d4d5d6d7d8d9d10d11d12d13.    The last digit d13

is a checksum, which is calculated from the other digits using the following formula:

10 – (d1 + 3d2 + d3 + 3d4 + d5 + 3d6 + d7 + 3d8 + d9 + 3d10 + d11 + 3d12) % 10

If the checksum is 10, replace it with 0. Your program should read the input as a String of 12 digits, d1 to d12.   You may assume the user enters the data as digits correctly although perhaps not enough digits.  (See more sample runs for exact requirements.) 

Example:  Sample Run 1

                   We see that the 13th digit is calculated as 6. 

Enter the first 12 digits of an ISBN-13 as a string: 978013213080 

The ISBN-13 number is 9780132130806 

Hints:

Remember that you are reading in a String.  This means we have characters and not digits when we see “978013213080”.

Check if the String length is 12. 

For the calculation, we must loop through all 12 characters (they are not considered digits as we read them in). 

Assuming s is our String, we may need to use s.charAt(i) – ‘0’  to find the number to be added, where i is indexing through the loop.  See other way to convert char to integer data.

In Week 7, we have TWO CHAPTERS, FOUR PROJECTS, and FOUR TEST PLANS!  You will be so glad that you stayed ahead, even a little.   I’m here to help you when you’re ready.

Share This Post

Email
WhatsApp
Facebook
Twitter
LinkedIn
Pinterest
Reddit

Order a Similar Paper and get 15% Discount on your First Order

Related Questions

In Units V, VI, and VII, you learned about the components of a computer, how a computer works, the internet, networks and network communications, cloud computing, web development, digital identity, so

In Units V, VI, and VII, you learned about the components of a computer, how a computer works, the internet, networks and network communications, cloud computing, web development, digital identity, social media, e-commerce, ethical behavior, databases, and explored two Microsoft Office applications, PowerPoint and Access.  In this assignment, you will

In the previous assignment, the annotated bibliography, you collected 15 – 20 references. Now, you are to craft an analytical research paper. Using the same themes assigned for the previous assignment

In the previous assignment, the annotated bibliography, you collected 15 – 20 references. Now, you are to craft an analytical research paper. Using the same themes assigned for the previous assignment.  GROUP 1: Context-Aware Computing  Prepare a ten (10) page research paper. In the paper, you are to cover the

This week, you will submit the second project, the Desktop Migration Proposal. Using the requirements analysis your manager provided and the Internet research you conducted, submit your recommendation

This week, you will submit the second project, the Desktop Migration Proposal. Using the requirements analysis your manager provided and the Internet research you conducted, submit your recommendation to the assignment folder. As you are writing your recommendation, ensure your analysis and recommendations align with your manager’s priorities and concerns.

In Units I, II, and III, you learned about the history of computers, application and system software, blockchain, cryptocurrency, computer ethics, and explored two Microsoft Office applications, Word

In Units I, II, and III, you learned about the history of computers, application and system software, blockchain, cryptocurrency, computer ethics, and explored two Microsoft Office applications, Word and Excel.  In this assignment you will demonstrate what you have learned in these three units. This assignment will have five parts. 

Research and brainstorm three (3) proposals for a mobile computing solution. Write up a half-page (double-spaced, approx. 250 words) description of each mobile computing solution proposal. Provide an

Research and brainstorm three (3) proposals for a mobile computing solution.  Write up a half-page (double-spaced, approx. 250 words) description of each mobile computing solution proposal. Provide answers to the following questions: 1) What is the 1 sentence summary of the mobile computing solution? 2) Who and how big is

Creating and Submitting your Portfolio Overview Creating a professional cybersecurity portfolio is essential for showcasing your skills, achievements, and growth. This portfolio will serve as a valuab

Creating and Submitting your Portfolio Overview Creating a professional cybersecurity portfolio is essential for showcasing your skills, achievements, and growth. This portfolio will serve as a valuable tool for presenting yourself to universities, scholarship committees, employers, and beyond. Objective:: To design a professional cybersecurity portfolio that markets your academic and

IntroductionFor this project, you will create a personal portfolio website to demonstrate your ability to use HTML, CSS, and JavaScript and resolve software problems in web development environments. Y

IntroductionFor this project, you will create a personal portfolio website to demonstrate your ability to use HTML, CSS, and JavaScript and resolve software problems in web development environments. You will create three HTML pages: a résumé, a cover letter, and a career goals page. As you make your website, you

IntroductionFor this project, you will create a personal portfolio website to demonstrate your ability to use HTML, CSS, and JavaScript and resolve software problems in web development environments. Y

IntroductionFor this project, you will create a personal portfolio website to demonstrate your ability to use HTML, CSS, and JavaScript and resolve software problems in web development environments. You will create three HTML pages: a résumé, a cover letter, and a career goals page. As you make your website, you

Need to report 1 You will submit two reports generated from your developed database. These reports should be meaningful to your database. The report(s) resolve one of the problems that you originally

Need to report 1 You will submit two reports generated from your developed database. These reports should be meaningful to your database. The report(s) resolve one of the problems that you originally identified in your Database Proposal.  The lay out should be appealing to the eye and the design should

Select any example visualization or infographic and imagine the contextual factors have changed: If the selected project was a static work, what ideas do you have for potentially making it usefully in

Select any example visualization or infographic and imagine the contextual factors have changed: If the selected project was a static work, what ideas do you have for potentially making it usefully interactive? How might you approach the design if it had to work on both mobile/tablet and desktop? If the

Excel 365/2021 Capstone – Level 2 Working with Sales Data These instructions are compatible with both Microsoft Windows and Mac operating systems. In this project, you will work with sales data from T

Excel 365/2021 Capstone – Level 2 Working with Sales Data These instructions are compatible with both Microsoft Windows and Mac operating systems. In this project, you will work with sales data from Top’t Corn, a popcorn company with an online store, multiple food trucks, and two retail stores. You will

Hello Students, As discussed in class, the Workspaces and Challenges are now active. Required Challenges for Full Credit To earn full credit (30% of the assignment), you must complete 6 challenges fro

Hello Students, As discussed in class, the Workspaces and Challenges are now active. Required Challenges for Full Credit To earn full credit (30% of the assignment), you must complete 8 challenges from the following list: Interns & HR on the Domain Controller Help Desk Fun: User Workstation Nightmares Dangerous Drives Preventative Protection: Thwarting the Imminent Threat Security