A milk carton can hold 3.78 L of milk each morning a dairy farm ships cartons of milk to local grocery store the cost of producing one liter of milk is $0.38 and the profit of each carton of milk is $0.27 Draw a flow chart of the program that does the following:
a) promise to use it to enter the total amount of no produce in the morning
B)Output the number of milk cartons need to hold milk (round answer to the nearest integer)
C)output the cost of producing milk
D)Output the profit of producing milk

Answers

Answer 1

Using knowledge in computational language in C++ it is possible to write code that draw a flow chart of the program that producing one liter of milk is $0.38 and the profit of each carton of milk is $0.27.

Writting the code:

#include <iostream>

#include <iomanip>

using namespace std;

int main(){

   double milkProduced, cartonsRequired;

   

   const double cartonSize = 3.78;

   const double productionCost = 0.38;

   const double cartonProfit = 0.27;

   

   cout << "How much milk did you produce? ";

   cin >> milkProduced;

   

   cartonsRequired = milkProduced / cartonSize;

   

   cout << fixed << showpoint << setprecision(2);

   

   cout << "That is going to require " << static_cast<int>(cartonsRequired) << " cartons" << endl;

   cout << "Total Cost to Produce: $" << cartonsRequired * productionCost << endl;

   cout << "Total Profit: $" << cartonsRequired * cartonProfit << endl;

   

   

   return 0;

}

See more about C++ at brainly.com/question/19705654

#SPJ1

A Milk Carton Can Hold 3.78 L Of Milk Each Morning A Dairy Farm Ships Cartons Of Milk To Local Grocery

Related Questions

Give three examples of the following types of data?
Give three examples for each category in the software domain ?

CCDI :)??

Answers

An example of transactional data are:

Sales ordersPurchase ordersShipping documents

Its software domain are: Personal  meeting, a telephone call, and a Video call

An example of  financial data are: assets, liabilities, and equity. The software are: CORE Banking, Retail Banking, and Private banking

An example of intellectual property data are: books, music, inventions. The software domain are Patents, trademarks, and copyrights

What types of software are used in the financial industry?

Through sales and marketing tools, data-driven contact management, and workflow automation, customer relationship management (CRM) software assists financial services organizations in fostering new relationships and maximizing the value of existing customers.

You can see how your consumers are utilizing your website to complete a transaction by using transaction management software. It may demonstrate both how each website element functions on its own and as a part of the overall technological infrastructure.

Note that Information that is gathered from transactions is referred to as transactional data. It keeps track of the date and location of the transaction, the time it took place, the price ranges of the goods purchased, the mode of payment used, any discounts applied, and other quantities and characteristics related to the transaction.

Learn more about transactional data  from

https://brainly.com/question/28081430
#SPJ1

plsssssss helpppppp meeee with thissssss

Answers

Answer:

1-- b

2--c

3--b

Hope It Helps !!

You're setting up a test environment that involves two subnets with three Windows Server 2016 servers on each subnet. The servers are running broadcast-based network services, such as DHCP. The host computer is attached to the production network, so you must prevent any conflicts. You want the two subnets to be able to communicate with each other. The test environment consists of a single Windows Server 2016 machine running Hyper-V. Describe how you plan to configure the virtual network.

Answers

Create a virtual switch in Hyper-V Manager. Launch the Hyper-V Manager, then select the server from the left pane or click "Connect to Server" in the right pane.

What is DHCP?The Dynamic Host Configuration Protocol (DHCP) is a client/server protocol that automatically assigns an IP address and other configuration information to an Internet Protocol (IP) host, such as the subnet mask and default gateway. Jul 29, 2021 DHCP (Dynamic Host Configuration Protocol) is a network management protocol that assigns an Internet Protocol (IP) address to any device or node on a network so that they can communicate via IP. The Dynamic Host Configuration Protocol (DHCP) is a network protocol that allows a server to automatically assign an IP address to a computer from a predefined range of numbers (called a scope) that has been configured for a specific network.

To learn more about DHCP, refer to:

https://brainly.com/question/14234787

#SPJ1

You have two Windows Server 2016 computers with the Hyper-V role installed. Both computers have two hard drives, one for the system volume and the other for data. One server, HyperVTest, is going to be used mainly for testing and what-if scenarios, and its data drive is 250 GB. You estimate that you might have 8 or 10 VMs configured on HyperVTest with two or three running at the same time. Each test VM has disk requirements ranging from about 30 GB to 50 GB. The other server, HyperVApp, runs in the data center with production VMs installed. Its data drive is 500 GB. You expect two VMs to run on HyperVApp, each needing about 150 GB to 200 GB of disk space. Both are expected to run fairly disk-intensive applications. Given this environment, describe how you would configure the virtual disks for the VMs on both servers.

Answers

The virtual disk configuration for the VMs on both servers in this environment is shown below.

In the Hyper V Test,

Since there will be two or three virtual machines running at once, each of which needs between 30 and 50 GB of the total 250 GB of disk space available,

What is virtual disks?

Setting up 5 virtual disks, each 50 GB in size.

2 VMs each have a 50 GB virtual drive assigned to them.

The above setup was chosen because running three VMs with various virtual disks assigned to them will not pose an issue when two or three VMs are running concurrently and sharing the same virtual disk. This is because the applications are disk-intensive.

To learn more about virtual disks refer to:

https://brainly.com/question/28851994

#SPJ1

Given this environment, the virtual disk configuration for the VMs on both servers is shown below. Because two or three VMs will be running at the same time, and each VM has disk requirements ranging from 30 to 50 GB of total disk space of 250 GB.

What is Hyper V Test?While there are several methods for testing new virtual machine updates, Hyper-V allows desktop administrators to add multiple virtual machines to a single desktop and run tests. The Hyper-V virtualization technology is included in many versions of Windows 10. Hyper-V allows virtualized computer systems to run on top of a physical host. These virtualized systems can be used and managed in the same way that physical computer systems can, despite the fact that they exist in a virtualized and isolated environment. To monitor the utilization of a processor, memory, interface, physical disk, and other hardware, use Performance Monitor (perfmon) on a Hyper-V host and the appropriate counters. On Windows systems, the perfmon utility is widely used for performance troubleshooting.

Therefore,

Configuration:

Creating 5 Virtual disks of 50 GB each.

1 virtual disk of 50 GB is assigned to 2 VM.

The above configuration is because since two or three VM will be running at the same time and using the same virtual disk will cause a problem since the applications are disk intensive, running three VMs with different virtual disks assigned to them, will not cause a problem.

For Hyper V App,

Two VM will run at the same time, and the disk requirement is 150 - 200 GB of 500 GB total disk space.

Configuration:

Creating 2 virtual disks of 200 GB each with dynamic Extension and assigning each one to a single VM will do the trick.

Since only two VMs are run here, the disk space can be separated.

To learn more about Hyper V Test, refer to:

https://brainly.com/question/14005847

#SPJ1

Digitizing Playing Cards
By yourself or with a partner, you will design an encoding system—to encode a deck of playing cards.

Let's think about the different characteristics of playing cards: rank (A-K), suit (Spades, Clubs, Hearts, Diamonds), color (Red, Black), etc.

Printable Playing CardsLinks to an external site.

Given your chosen characteristics, develop a “code” of zeroes and ones that defines each card.

Choose enough defining characteristics of the playing cards so that a combination of them is enough to differentiate each from the other.

Each card in a 52-card deck (no jokers) should be defined in your code.
And no code sequence should refer to more than one card.
It is not necessary for all codes to have a corresponding card.
Test your code alone or with a partner to ensure the guidelines are followed.

Your code. They may use any number of formats, not limited to written rules, a table, or descriptions with examples.
A discussion of whether you chose variable- or fixed-length encoding and what the implications are for robustness and/or efficiency. https://files.projectstem.org/CSP/CSP_Additional_Course_Materials/PlayingCards_Printables.pdf (card deck)

Answers

       Playing cards are described as one of a set of 24 to 78 small rectangular pieces of cardboard or plastic that are imprinted on one side to indicate their rank and suit and are used in a variety of games.

Do designs for playing cards have a copyright?

       The designs on the front of the cards and other graphic artwork may be protected as visual arts. However, playing cards and card games only receive a limited amount of copyright protection, regardless of whether the work contains instructions or a graphic design.

      Any graphic art, including the images on the card faces, may be protected as works of visual art. The level of copyright protection given to playing cards and card games is constrained, regardless of whether the work contains instructions or a graphic design.

    Talcum Powder is used Pasteboard cards should be cleaned by placing them in a plastic bag with a few teaspoons of flour, talc, or cornstarch. Pull the cards out and clean them off with a paper towel after giving the bag a good shake to ensure that all the cards are covered.

     Playing cards may be quickly and precisely printed in large quantities using a web press, a sort of printing machine.

To Learn more About  Playing cards, Refer:

https://brainly.com/question/28388405

#SPJ1

Other Questions
On a recent day, 8 euros were worth $9 and 40 euros were worth $45. Enter an equation of the formy = kx to show the relationship between the number of euros and the value in dollars. Let y be the valuein dollars and x be the number of euros.The equation is y = what the area of square 6/7 yd and 6/7 The graph of y = f(x) is shown in the xy-plane below. solve problems 1/2 2= A rectangular garden plot has an area of 250 square ft. which of the following are possible dimensions for the plot? - 20 ft X 20 ft- 25 ft X 10 ft - 125 ft by 2ft - 5 ft X 50 ft Fill in the blanks with the word bank at the bottom answer answer your answer by filling in the blank boxes Please help me by telling me the correct order please this is for my study guide a grocery store is offering a promotion where a customer receives $0.20 discount per selected sale items, and Paulo has a coupon where he receives $0.10 off regularly priced items. Before applying the discounts the cost of Paulo's sale items was $58..18 and the cost of Paulo's regularly priced items was $ 41.34. After applying the discounts, Paulo spent $92.32 on both the sale items and regularly priced items. if Paulo bought 6 more sale items than regularly priced items, how many items did he buy in all? Solve for x1/2x - 2 = 5 The Cookie Factory wants to sell chocolate chip and peanut butter cookies in combination packages of 6-12cookies. At least three of each type of cookie should be in each package. The cost of making a chocolatechip cookie is 19 cents, and the selling price is 44 cents each. The cost of making a peanut butter cookie is13 cents, and the selling price is 39 cents. How many of each type of cookie should be in each package tomaximize the profit?A. 3 chocolate chip and 3 peanut butter B. 3 chocolate chip and 9 peanut butterC. 9 chocolate chip and 3 peanut butter D. 0 chocolate chip and 12 peanut butter WHICH STATEMENT DESCRIBES ONE FEATURE OF RUTHERFORDS MODEL OF THE ATOM Learn with an exampleor Watch a videoFind the slope of the line that passes through (5, 4) and (10, 10).Cimplify your answer and write it as a proper fraction, improper fraction, Graph the following function on a coordinate graph.take a number (x), quadruple it , and subtract 2. Graph the function Plot any five points on the graph. Which of the following logarithmic equations is equivalent to the exponentialequation below?8* -512A. log, 512 -B. 1096128 - XC. log, * - 512O D.log, 512 - 8 Circle R has a diameter ST with endpoints at S(4,5) and T (-2,-3). Calculate the sum of the first 8 terms of the arithmetic sequence in which a8=-1 and the common difference is d=-8 The starting line for a race in Douglas is 9 kilometers from the finish line. On a map of the course, the starting and finish lines are 3 centimeters apart. What scale does the map use?Write your answer as a decimal or whole number.1 centimeter = how do this problem and what would be the answer?