C++ simple coding homework

I need this done in 2 and a half hours. simple coding nothing too complex because the class just started

and I CANNOT use namespace

 DESCRIPTION

WARNING: You are only allowed to use code covered in class, HW, or in the textbook up to Chp 3. Students who wish to use more advanced code must currently have an “A” in the course and obtain permission from me via email before starting the project. ALSO, code must be your OWN. Ask for hints, but write your own code! All students who copy from each other or get the same code by working together will receive zeroes.

This program will help users calculate quantities needed for a recipe. All the user needs to input is the number of servings and the name of the bread they will be using. Your program does the rest.

Below is the default recipe for bread. You must start with this. Then, based on how many loaves the user wants, you have to do the necessary calculations to figure out the new quantities for each ingredient. 

Recipe: by bakers percentages

  • Starting water: 72%
  • rye flour: 10%
  • red wheat flour: 20%
  • King Arthur special patent flour 30%
  • Bread flour 40%
  • sourdough starter 20%

Normally after mixing the bread is allowed to rest

  • additional water 2.5%
  • salt 2%

Serving Units: In a home kitchen, consider the (ml or g) unit as indivisible. A person cannot calculate, for example, what half of an (ml) is. Also consider a loaf to be indivisible (Ex: You can’t have 7.5 loaves).

Bakers percentages are expressed in terms of total flour used. (By adding up the rye, red wheat and bread flour). For example making two loaves of bread is generally 1000g total flour. So rye at 10% would be 100g.

INPUT: You will need to first get the name of the bread, then the number of loaves desired.

OUTPUT:

NAME: “Name of the bread”           NUMBER: “number of loaves”

INGREDIENTS:

“ingredient in 20 spaces” “amount in 5 spaces” “g or ml”

Notes: The bold are lables for the program output
            The stuff in quotes is output.
            There are 10 spaces after the name before the NUMBER label

Check the output and make yours match

Getting the Mimir test cases correct is only PART of your grade. The rest will depend on the quality of your code. I will never remove points for things that are personal preferences. As you know, your author and I have slightly different styles. However, the proper use of constants, correct data types, and other standards of using this language will be enforced. Ask me questions during class if you have any doubts.

NOTE: You have unlimited submissions. You may keep uploading your CPP file until you pass all test cases and are happy with your code. I will only grade the last submission. Location of your CPP in CLion: C:Users[your name]CLionProjects (look inside the folder with the name you gave your project)

NOTE: for this assignment write it to run in CLion – ignore the need for extra lines of output

ACTIONS 

Design a program that asks

  

Design a program that asks the user to enter the total square feet in a tract of land and calculates the number of acres in tract.

one acre of land is equal to 43,560 square feet 

Required:

Flowchart

pseudo code would look like this:

Declare variable sqFeet

Display prompt to user: “Enter the total number of square feet:”

Get number from user and assign to sqFeet

Declare variable acres

Let acres = sqFeet/43560

Display string to user: “The total number of acres is: “

Display value of acres to user.

Exp19_Excel_Ch05_ML1_RealEstate

 

Exp19_Excel_Ch05_ML1_RealEstate

 

Project Description:

You are a real estate analyst who works for Mountain View Realty in the North Utah County area. You have consolidated a list of houses sold during the past few months and want to analyze the data. For a simple analysis, you will outline the data and use the Subtotal feature. You will then create two PivotTables and a PivotChart to perform more in-depth analysis.

Assignmnt

 

  1. What is your definition of AI?  Please explain.
  2. What is your opinion of AI, is the technology currently available? Why or why not?
  3. Please note at least four AI technologies, explain if they are truly AI or something else.  Thoroughly explain your answer.
  4. How is AI perceived as different in various industries and locations? Please explain.

2/1 Devotional

We see sinful behavior all around us, including in the virtual world. The Scriptures warn us about evil practices. When one thinks of information systems security, a biblical verse that encourages us to prepare for a hacker or attacker is not usually considered, but consider Proverbs 2:11, “Discretion will protect you, and understanding will guard you” (NIV). In addition, Psalm 34:19 states, “The righteous person may have troubles, but the Lord delivers him from them all” (NIV). When we are vigilant, God promises to bless our efforts.

  1. Be sure to address the following prompts in your paper:
    1. Considering your religious/cultural background, what do you see as God’s role in our security efforts?
    2. What does the Bible say we need to do for God’s blessing?
    3. How would you apply the principles of these verses in your workplace?
  2. Your paper should be at least 350 words in length.

12 Quiz

 

Answer each these questions in a paragraph with at least five sentences: Include the question and number your responses accordingly. Provide a citation for each answer.

1. Describe Digital Literacy (how to know what is real on the web). 

2.  None of these people exist. What does this mean to you?

3. Why is Wikipedia more reliable than a paper encyclopedia?

4. How useful are crowd sources answers?

5. What are some drawbacks to crowd sourced answers?

6. Do people generally utilize the diversity of sources on the Internet effectively?

7. How reliant are we and how reliant should we be on getting our news from social media?

8. How do humans remain vigilant when we turn over authority to computers? Have you tried to navigate without gps?

9. If models are simplifications or reality, why do we rely on them?

10. Why was this model, used by Amazon for hiring, wrong?

11. Why did Skynet declare war on the human race?

Flowchart and pseudocode

Draw a flowchart and write pseudocode to represent the logic of a program that allows the user to enter two values. The program outputs the product of the two values.