Using Coral Pseudocode, design the logic for a program that uses arrays based on the following scenario:

Trainers at Coyote Athletic Club are encouraged to enroll new members. Write an application that allows the owner Wile E. Coyote to enter the number of new members each trainer has enrolled this year. The number of trainers will vary each year so make sure you enable it to allow Wile to select how many trainers he has before entering the number of members enrolled for each trainer in an array. Add up all the members that fall within the correct range into an array before outputting the totals.

0 - 5 members
6 - 12 members
13 - 20 members
More than 20 members
Example Input for Trainers
Value Entered for Number of Trainers: 10
Values Entered Member Enrolled: 2 13 7 13 20 0 15 21 5 25

Answers

Answer 1

Answer:

Coral Pseudocode:

1. Start

2. Declare variables:

- numTrainers: integer

- trainers: array of integers

- range1: integer

- range2: integer

- range3: integer

- range4: integer

3. Prompt the user to enter the number of trainers

4. Read and store the value in numTrainers

5. Initialize the ranges to 0

6. For i = 1 to numTrainers do the following:

a. Prompt the user to enter the number of members enrolled by trainer i

b. Read and store the value in trainers[i]

c. If trainers[i] is between 0 and 5, add 1 to range1

d. If trainers[i] is between 6 and 12, add 1 to range2

e. If trainers[i] is between 13 and 20, add 1 to range3

f. If trainers[i] is greater than 20, add 1 to range4

7. Store the range values in an array

8. Output the range values

9. End

Explanation:

The above Coral Pseudocode outlines the logic for a program that allows the owner of Coyote Athletic Club to enter the number of new members each trainer has enrolled this year. The program prompts the user to enter the number of trainers and the number of members enrolled by each trainer. It then checks the number of members enrolled by each trainer and adds it to the appropriate range. Finally, it stores the range values in an array and outputs the range values.

The program uses an array to store the number of members enrolled by each trainer. It also uses four variables to store the number of members that fall within each range. The program uses a for loop to iterate through each trainer and check the number of members enrolled by each trainer. If the number of members enrolled by a trainer falls within a particular range, the program adds 1 to the corresponding range variable.

After the program has checked the number of members enrolled by each trainer, it stores the range values in an array. Finally, the program outputs the range values.

Answer 2

The Example of the Output based on the given input is:

csharp

Total members with 0-5 members: 27

Total members with 6-12 members: 43

Total members with 13-20 members: 48

What is the Pseudocode

The Coral Pseudocode to design the logic for the program is given below:

vbnet

Algorithm: CalculateNewMemberTotals

// Step 1: Input the number of trainers

Input "Enter the number of trainers: " numTrainers

// Step 2: Initialize arrays to store the member totals for each range

Declare Array memberTotals[3]

memberTotals[0] = 0 // 0 - 5 members

memberTotals[1] = 0 // 6 - 12 members

memberTotals[2] = 0 // 13 - 20 members

// Step 3: Loop through each trainer to input the number of members enrolled

For i = 1 to numTrainers

   Input "Enter the number of members enrolled for trainer " + i + ": " membersEnrolled

   // Step 4: Check which range the members fall into and add to the corresponding total

   If membersEnrolled >= 0 AND membersEnrolled <= 5 Then

       memberTotals[0] = memberTotals[0] + membersEnrolled

   Else If membersEnrolled >= 6 AND membersEnrolled <= 12 Then

       memberTotals[1] = memberTotals[1] + membersEnrolled

   Else If membersEnrolled >= 13 AND membersEnrolled <= 20 Then

       memberTotals[2] = memberTotals[2] + membersEnrolled

   End If

End For

// Step 5: Output the total members in each range

Output "Total members with 0-5 members: " + memberTotals[0]

Output "Total members with 6-12 members: " + memberTotals[1]

Output "Total members with 13-20 members: " + memberTotals[2]

End Algorithm

The Example Input for Trainers (using the provided values):

mathematica

Enter the number of trainers: 10

Enter the number of members enrolled for trainer 1: 2

Enter the number of members enrolled for trainer 2: 13

Enter the number of members enrolled for trainer 3: 7

Enter the number of members enrolled for trainer 4: 13

Enter the number of members enrolled for trainer 5: 20

Enter the number of members enrolled for trainer 6: 0

Enter the number of members enrolled for trainer 7: 15

Enter the number of members enrolled for trainer 8: 21

Enter the number of members enrolled for trainer 9: 5

Enter the number of members enrolled for trainer 10: 25

Read more about Pseudocode  here:

https://brainly.com/question/24953880

#SPJ2


Related Questions

Why is it necessary for you to know your rights as an employee?​

Answers

Answer:

It is necessary for employees to know their rights in the workplace in order to protect themselves from any potential abuse or mistreatment from their employers. By being aware of their rights, employees can ensure that they are being treated fairly and can take action if their rights are being violated. Knowing their rights can also help employees to negotiate better salaries and benefits, and to understand the terms of their employment contracts. In some cases, knowing their rights may even help employees to avoid workplace discrimination or harassment. Overall, knowing their rights is an important step towards maintaining a safe and fair work environment.

Explanation:

Codehs decreasing resolution 8.9.4

Answers

With CodeHS, you can use the setImageURL() method to set the width and height attributes of a picture to the desired values in order to reduce its resolution.

How can I lower an image's resolution in HTML?

Using the height and width attributes on the img tag is one of the easiest ways to resize an image in HTML. These numbers define the image element's height and width. The values are entered in pixels, or px, in CSS.

How can you adjust an image's resolution in Javascript?

CreateElement("canvas"); var ctx = canvas. getContext("2d"); / Real resizing of ctx. drawImage(img, 0, 0, 300, 300); / Display resized picture in preview element var dataurl = canvas. / Dynamically build a canvas element.

To know more about CodeHS visit:-

https://brainly.com/question/26099830

#SPJ1

Draw the ER diagram of student information system of the following entities: Student,Exam, Record​

Answers

Answer:

The Student entity would likely be at the center of the ER diagram, as it is the main entity in this system. The Exam entity would be linked to the Student entity with a one-to-many relationship, as each student can take multiple exams. The Record entity would also be linked to the Student entity with a one-to-many relationship, as each student can have multiple records (e.g. academic records, attendance records, etc.).

The Exam entity and the Record entity may also be linked to each other with a one-to-one relationship, as each record may correspond to a specific exam. However, this would depend on the specific requirements of the student information system being modeled.

Explanation:

The discovery of electronically stored information has become an important subdiscipline in law and technology. What is this subdiscipline called?
Question 3 options:

Redacting

Transborder Data Flows

Electronic Discovery

Data Retention Program


Question 4 (2 points)
What type of data does this describe, "Information from which the direct identifiers have been eliminated. Indirect identifiers remain intact"?
Question 4 options:

Pseudonymous data

Anonymous data

De-identified data

Redacted data

Answers

Answer:

Answer to Question 3:

The answer to question 3 is "Electronic Discovery". The term "Electronic Discovery" (also known as e-discovery) refers to the process of identifying, collecting, preserving, reviewing, and producing electronically stored information (ESI) in response to a legal request or investigation. E-discovery has become an important subdiscipline in law and technology due to the increasing use of digital devices and the internet to create, store, and transmit information. E-discovery specialists and software tools are often used by legal teams to help manage and analyze large volumes of ESI in a cost-effective and efficient manner.

Answer to Question 4:

The answer to question 4 is "De-identified data". De-identified data refers to data that has been stripped of direct identifiers (such as name, address, phone number, social security number, etc.) that could be used to identify an individual. However, indirect identifiers (such as age, gender, occupation, zip code, etc.) may still be present in the data, which could potentially be used to re-identify an individual. De-identified data is often used in research studies and other contexts where the privacy of individuals needs to be protected while still allowing analysis of the data. By removing direct identifiers, the risk of re-identification is greatly reduced, although it is still possible if the indirect identifiers are combined with other available information.

What file name do you use to save your site map?

A. site_map.xml

B. site map.html

C. sitemap.xml

D. document.html

E. document.xml​

Answers

Answer:

c

Explanation:

The answer is C. sitemap.xml

Reflect on what you think are the biggest threats posed by a world that increasingly relies on digital data. Almost every aspect of modern life is dependent on computers and the data they process working correctly. From energy to transportation, from banking to commerce, and from health care to food production, computers play a significant part of the process of delivering those services.

What are some of the things that ordinary people can and should do to protect themselves from network attackers?
What are the responsibilities of those that deliver these vital services and what can they do to ensure these services are safe?
Instructions:

Write a post of at least 5 sentences outlining your answers to the above questions about threats to a digital world. Are there things you should be doing differently to protect yourself and others from digital disaster?

Answers

As the world becomes increasingly reliant on digital data, there are several threats that pose significant risks to individuals and society as a whole. One of the biggest threats is cybercrime, including hacking, identity theft, and other malicious activities that can compromise personal information and financial security.

What is the use of computers  about?

The  growing interconnectedness of digital networks also makes them vulnerable to cyber attacks that could disrupt critical infrastructure and public services.

To protect themselves from network attackers, ordinary people should take steps such as using strong passwords, keeping software up-to-date, and being cautious about sharing personal information online. It's also important to be aware of common scams and phishing attempts and to avoid clicking on suspicious links or downloading unknown attachments.

Therefore, Those who deliver vital digital services have a responsibility to ensure the security of their systems and data. This includes implementing robust security measures, conducting regular vulnerability assessments and risk management, and investing in employee training and awareness programs to help prevent insider threats.

Learn more about computers here:

https://brainly.com/question/24540334

#SPJ1

Explain the Police powers- -Suggest scenarios which reflect the acceptable situation between all necessary means without the cause of death and the deadly force.​

Answers

Answer:

Police powers refer to the legal authority given to law enforcement officers to maintain public safety, prevent crime, and enforce laws. While police officers are allowed to use force to carry out their duties, they are also required to use only the necessary amount of force needed to resolve a situation.

Acceptable situations where police officers may use force without causing death or resorting to deadly force may include scenarios such as:

Arresting a suspect who is resisting arrest: If a suspect is resisting arrest or attempting to flee, police officers may use reasonable force to detain them. This could include using handcuffs or physical force to subdue the suspect, but it should not cause any serious injury or death.

Preventing harm to self or others: In situations where individuals are posing a threat to themselves or others, police officers may use force to prevent harm. For example, if a person is threatening to harm themselves or others, police officers may use non-lethal force, such as pepper spray or a taser, to disarm them and bring them under control.

Controlling violent or dangerous situations: If a situation is violent or dangerous, police officers may use force to control the situation and protect civilians. This could include using non-lethal weapons, such as batons or rubber bullets, to subdue violent or aggressive individuals.

Enforcing laws: In situations where individuals are breaking the law, police officers may use force to enforce the law and bring the situation under control. For example, if a person is engaging in a physical altercation in public, police officers may use force to break up the fight and prevent further violence.

In all of these situations, police officers are expected to use only the necessary amount of force needed to resolve the situation and should avoid causing serious injury or death whenever possible. It is important for police officers to receive proper training in the use of force to ensure they can make sound decisions and use appropriate levels of force when necessary.

Explanation:

Which of the following is the purpose of writing an investigation report?

a.To provide the accused with the facts needed to decide the matter.

b.To imprecisely document the investigation conducted.

c.To evidence an impartial institutional response.

d.To best withstand the investigation.​

Answers

To show that an institution responded impartially. An investigation report is written to give an unbiased account of the investigation that was done, including the facts that were discovered.

What serves as an investigative report's primary objective?

As soon as a formal complaint is made or an event happens, a report detailing the results of an investigation is created. Here, the investigators take notes on the pertinent concerns, examine the available data, and draw a conclusion.

What constitutes an investigative report's most crucial section?

The most crucial section of an investigation report is the executive summary. In addition, it is the most read. It should paint a clear but succinct picture of the specific allegation or complaint

To know more about institution visit:-

https://brainly.com/question/163262

#SPJ1

Write a C++ program that will implement all of the sorting algorithms. The program
should accept different unsorted data items from user and sort using all algorithms and
should tell which algorithm is efficient for that particular unsorted data items.

Answers

For things like this I would highly recommend ChatGPT. Copy your question and ask the bot

What does filtering a record do?
A.) It suppress some records and shows others.
B.) It removes records from the document permanently.
C.) It sorts all the data in the record.
D.) It arranges all the information in one column.

Answers

Answer:

A) It suppresses some records and shows others.

Explanation:

What is a System. Computer​

Answers

Answer:

A computer system is a set of integrated devices that input, output, process, and store data and information. Computer systems are currently built around at least one digital processing device. There are five main hardware components in a computer system: Input, Processing, Storage, Output and Communication devices.

Consider this list of numbers: 9 3 6 8 4 7. Why are they not suitable for a binary search?

Answers

The proved list of numbers is not suitable for a binary search because the list is not sorted in ascending order.

Binary search is an efficient algorithm for finding an item from a sorted list of items. It works by repeatedly dividing in half the portion of the list that could contain the item, until you've narrowed down the possible locations to just one.

Azim and his team are invited by a client to attend a group meeting. The client runs a mid-sized financial consulting and auditing firm. The group meeting is about gathering requirements for the new website. The client would like the website to bring the firm more business and make the firm's presence felt in the market. In the meeting, Azim finds that several people are brainstorming and randomly throwing out suggestions. Azim thinks this might confuse his team later regarding which requirements must be met. What can Azim do to gather a confirmed set of requirements from the client group?

A. Note down all suggestions diligently and later select whichever requirements are the easiest to implement. in the

B. Stop the discussion and schedule a one-on-one meeting with each person

C. Determine a central person in the client group, and seek input only from that individual.

D. Let the meeting continue as is, but later speak with the head of the IT department to clarify requirements.

E. Jump into the discussion and brainstorm along with the client team members.​

Answers

To gather a confirmed set of requirements from the client group, Azim can take the following steps:

B. Stop the discussion and schedule a one-on-one meeting with each person.

This will allow Azim to have a more focused conversation with each person and get a better understanding of their individual requirements. It will also prevent confusion later on regarding which requirements must be met. By speaking with each person one-on-one, Azim can ensure that all requirements are captured and that his team can deliver a website that meets the client's needs.

A directional flow of electrical charge through an object or medium:

Answers

Answer:

The directional flow of electrical charge through an object or medium is called electric current.

Explanation:

Arithmetic Instructions: Activity: Display Sum of 3 numbers (Assembly Code)

Read 3 numbers then display their sum. Sum should not be greater than 9
Sample
Input

4+1+2

Output

7

Answers

Enter three single-digit integers, separated by +, when prompted, for example, 4+1+2. If the total is less than or equal to 9, the software will display it; if not, it will leave. The result in this instance will be Sum is: 7.

What is R for sum = (sum * 10)+?

We can apply the equation sum=(sum*10)+r to determine a number's inverse. The phrase means that we multiply each integer by 10 in order to change the number's location. This is similar to the topics covered in lower-level classes.

Display the prompt message with the following command: _start: mov eax, 4; system call for writing to stdout using the following command: mov ebx, 1; mov ecx, prompt; Address of the prompt message is mov edx, prompt len, and the length is int 0x80.

Read the first number.

System call for reading from stdin: mov eax, 3; mov ebx, 0; File descriptor for mov ecx, num1 from the stdin; Address for input storage: mov edx, 1; Integer 0x80 maximum amount of characters to read

Read second number as follows: mov eax, mov bx, mov cx, num2 dx, int 0x80.

To know more about software visit:-

https://brainly.com/question/1022352

#SPJ1

This is python, how can i get the output on one line?

Answers

Answer: Your welcome!

Explanation:

You can use the print() function and separate each statement with a comma (,). For instance, print('Hello', 'World') will output 'Hello World' on one line.

What aspect of web page design allows a web page to work on different screen sizes?

________allows a web page to work on different screen sizes.​

Answers

Answer:

Responsive web design allows a web page to work on different screen sizes.

Explanation:

Draw a state process model with two (2) suspend states and fully discuss the
transition of processes from one state to the next by OS

Answers

The several states that a process could be in over its lifetime can be represented using a state process model. A process can be in one of the states of running, ready, blocked, or suspend under this model.

What two states are there in the two state process model?

A two-state model, which has just the two states listed below, is the simplest model for the process state. Currently running state: A state in which the process is active.

Process State Transition Diagram: What Is It?

A process that is active is often in one of the five states shown in the diagram. The arrows depict the process's state transitions. If a process is assigned to a CPU, it is considered to be operating.

To know more about state process visit:-

https://brainly.com/question/15117660

#SPJ1

Naomi is formatting a document in a word processor. She wants the section headings in her document to stand out. She changes the font type and size of one heading and also makes it bold. She wants to copy this formatting style to all other headings in the document. What should she do?

A.
cut the heading and paste it as many times as required to create other headings
B.
copy the formatting style of the heading and apply it to the other headings
C.
copy the heading and paste it as many times as required to create other headings
D.
individually format each of the other headings in the same way

Answers

Naomi should copy the formatting style of the heading and apply it to the other headings in the document. This can be done by using the "Format Painter" tool in the word processor.

What is Word Processor?


A word processor is a software application used for creating, editing, and formatting text documents, such as letters, reports, and essays.

Thus, the steps to do this are:

Select the heading that has the desired formatting style.Click on the "Format Painter" tool in the toolbar. This will copy the formatting style of the selected text.Select the other headings in the document that need to be formatted in the same way.The selected headings will now have the same font type, size, and bold formatting as the original heading.

Learn more about Word Processor:
https://brainly.com/question/14126052
#SPJ1

stuff = []





stuff.append(1.0)


stuff.append(2.0)


stuff.append(3.0)


stuff.append(4.0)


stuff.append(5.0)





print(stuff)



3. What data type are the elements in stuff?


4. What is the output for print(len(stuff))?


5. What is the output for print(stuff[0])?

Answers

Answer:

Explanation:

The given code snippet defines an empty list named "stuff", then appends five float values to it, and finally prints the content of the list. Here are the answers to the questions:

3. The elements in "stuff" are floating-point numbers, specifically 1.0, 2.0, 3.0, 4.0, and 5.0.

4. The output for "print(len(stuff))" would be 5, because the length of the list "stuff" is 5 (i.e., it has five elements).

5.The output for "print(stuff[0])" would be 1.0, because the first element of the list "stuff" (i.e., the element with index 0) is 1.0.

What kind of functional dependency table is this? I am thinking 1NF because I saw 2NF in the bottom, but I might be wrong. Please let me know.

Answers

The given table suggests that it is in the first normal form (1NF), as there are no recurring groups and atomic values in each column. However judging just by the table, it's unclear if it falls within the 2NF or higher range.

How do you know whether a table is 1NF, 2NF, or 3NF?

A relation is in 1NF if it has an atomic value. A relation will be in 2NF if it is in 1NF and all non-key attributes are fully functioning reliant on the primary key.

What is normalisation? What does 1st, 2nd, and 3rd NF mean?

The fundamental normal forms used in database normalisation are the first, second, and third normal forms: Each attribute in the connection is atomic, according to the relation's first normal form (1NF). Non-prime qualities must be functionally reliant on the entire candidate key, according to the second normal form (2NF).

To know more about table visit:-

https://brainly.com/question/22736943

#SPJ1

When selected, the underscore in the Input Mask Wizard is considered a _____

Answers

Answer:

In the Input Mask Wizard, when selected, the underscore symbol represents a placeholder for a single character entry. It is considered a wildcard character that matches any valid character that can be entered in that position in the input.

Explanation:

the digital world is exciting, but like everything else, it has its pluses and minuses. describe one and advantage and one disadvantage of living in a digital world

Answers

Answer:

One advantage of living in a digital world is the ease and convenience of accessing information. With the internet, we have access to an abundance of information on virtually any topic, and we can access it from almost anywhere at any time. This can help us learn new things, stay informed about current events, and make more informed decisions.

One disadvantage of living in a digital world is the potential for social isolation and disconnection from the physical world. As we spend more time interacting with screens and devices, we may have less face-to-face contact with other people, which can lead to feelings of loneliness, depression, and anxiety. Additionally, social media and other online platforms can create a false sense of connection and belonging, leading people to prioritize their digital relationships over their real-life ones.

Explanation:

If you take a step back from some of the technical details of this course, and look at the big picture, you will realize that security is not a technical issue, but a business one. How is software security a business issue? Think about it this way, if you had to explain software security to an executive, you would not want to talk about secure methods or if statements. The best security professional is the one who is able to communicate across all groups with very limited "geek" speak.

Answers

Because it directly affects the overall wellbeing and success of an organisation, software security is a business issue. Financial losses and reputational harm to the company can come from security breaches.

In the case of a security breach, which of the following activities should a company take?

To prevent other servers or devices from becoming infected following a data breach, you should first identify which systems have been compromised and confine them as quickly as you can.

What action should be performed as soon as the data is gathered when a security breach is discovered on a system?

Engage IT to audit the impacted systems and determine the precise cause of the issue. Do a risk analysis.

To know more about software visit:-

https://brainly.com/question/1022352

#SPJ1

Codehs decreasing resolution 8.9.4 can someone help me out with this code making this image in a 10x10 pixel grid.

Answers

I can provide you with pseudocode to draw the described image on a 10x10 pixel grid.

Write pseudocode for drawing 10x10 pixel grid?

set all pixels to white

draw a black square from (2,2) to (7,7)

draw a black line from (1,1) to (8,8)

draw a black line from (1,8) to (8,1)

Now, let's move on to the questions:

Since the compressed version is not defined, I cannot determine how many fewer pixels it uses or the compression rate.

The compresses version is not defined, so I cannot determine if it is recognizable or close enough to the original image.

The features of an image that are most visually affected by decreasing the resolution are its details, edges, and fine textures. When the resolution is lowered, these features become more blurry and less distinct, making it more difficult to recognize the image or its components.

To learn more about pseudocode, visit: https://brainly.com/question/24953880

#SPJ1

what are the types of system software

Answers

Answer:

Operating systems: An operating system (OS) is a program that manages the computer's hardware and software resources, and provides a user interface for interacting with the computer.

Device drivers: Device drivers are programs that allow the computer's operating system to communicate with hardware devices, such as printers, scanners, and network adapters.

Firmware: Firmware is a type of software that is embedded in hardware devices, such as printers and routers. It provides the low-level instructions that enable the device to function.

Utility programs: Utility programs are tools that help to maintain and optimize the computer's performance, such as disk defragmenters, antivirus programs, and backup utilities.

Programming language translators: Programming language translators, such as compilers and interpreters, convert high-level programming languages into machine language that can be executed by the computer.

These types of system software work together to manage the computer's resources and provide a stable and efficient computing environment.

Explanation:

Answer: 1. Operating Software

OS or operating software is considered as one of the essential system software on the computer. And nowadays, many companies create operating software and optimize them.

2. Utility Software

Utility software is the system software type that has a variety of programs to apply across the applications. The most common utility software are troubleshooting and diagnostic tools or software available in the complete.

3. Device Drivers

Device drivers or driver software is used to connect the peripheral and other similar devices. Keyboards, mouse and similar devices get connected with the computer using device drivers.

4. Firmware

Firmware is the type of system software that is already present in the Ram, ROM, EPROM, and other chips so that the operating system can identify those.

5. Programming Language Translator

These are the software that is used by the programmers so that they can translate high-level language into machine language. C++, Python, and PHP are some of the programming languages used to program the codes.

Explanation: These are types with examples if you want you can just write the types you want

Which of these statements are true? Select 2 options.

A. The new line character is "\newline".
B. In a single program, you can read from one file and write to another.
C. Python can only be used with files having ".py" as an extension.
D. If you open a file in append mode, the program halts with an error if the file named does not exist.
E. If you open a file in append mode, Python creates a new file if the file named does not exist.

Answers

The appropriate choices are This is accurate; if you open a file in append mode and it doesn't exist, Python generates a new file with that name. You can also read from one file and write to another in a single programme.

Can a file be read in add mode?

The pointer is added at the end of the file as information is added using the append mode. In the event that a file is missing, add mode generates it. The fundamental difference between the write and append modes is that an append operation doesn't change a file's contents.

Which of the following moves the file pointer to the file's beginning?

The file pointer is moved to the file's beginning using the ios::beg function.

To know more about Python visit:-

https://brainly.com/question/30427047

#SPJ1

Beverly sells donuts at the local bakery. Donuts cost $.50 each unless customers buy a dozen or more. When customers buy at least a dozen they cost $.40 each. Beverly earns a commission based on her sales performance. Because the bakery makes so much money on beverages, she earns 10% commission (based on the total sale) when a customer buys a drink. She also earns commission on her sales. She earns 2% on each sale that totals more than $10. She earns 1% commission on each sale that totals more than $5 (but less than $10). She does not earncommission on each sale that totals $5 or less (though she will earn the beverage commission). Complete the tablebelow to help Beverly calculate her commission based on the 50 customers she helped this morning.

Please show formulas, thanks!​

Answers

Answer:

| # of Donuts | Cost of Donuts | Cost of Beverages | Total Sale | Commission |

|-------------|----------------|------------------|------------|------------|

| 1 | $0.50 | $2.00 | $2.50 | 0.00 |

| 6 | $3.00 | $2.00 | $5.00 | 0.00 |

| 12 | $4.80 | $2.00 | $6.80 | 0.68 |

| 18 | $7.20 | $2.00 | $9.20 | 0.92 |

| 24 | $9.60 | $2.00 | $11.60 | 1.16 |

| 30 | $12.00 | $2.00 | $14.00 | 1.40 |

| Total | | | $49.10 | $4.16 |

To calculate the cost of donuts, we can use the following formula:

Cost of donuts = (# of donuts x cost per donut)

To calculate the total sale, we can use the following formula:

Total sale = (cost of donuts + cost of beverages)

To calculate the commission, we can use the following formulas:

Commission for sales over $10 = (total sale x 2%)

Commission for sales over $5 (but less than $10) = (total sale x 1%)

Commission for beverages = (cost of beverages x 10%)

Total commission = (commission for sales over $10 + commission for sales over $5 + commission for beverages)

When using the Simple Query Wizard, Kirsten wanted to transfer all of her available data to a new table. She should click on the:
1.) double right-facing arrow.
2.) double left-facing arrow.
3.) single right-facing arrow.
4.) single left-facing arrow.

Answers

Answer:

Kirsten should click on the double right-facing arrow in the Simple Query Wizard to transfer all of her available data to a new table.

Explanation:

The assessment you are doing lives in the cloud. The program that grades it and saves your score lives in the cloud. Who might need to apply patches to this software? Select three options.

It depends on the operating system you are using. Some operating systems do not do updates.

The vendor that provides the course is responsible for updating its software.


You are responsible for keeping your browser updated if you are using your own computer.


The school is responsible for updating computers in its computer lab if you work at school.


Nobody needs to apply updates to their software. No patches are ever needed.

Answers

Answer:

Explanation:The three options that might need to apply patches to this software are:

The vendor that provides the course is responsible for updating its software.

You are responsible for keeping your browser updated if you are using your own computer.

The school is responsible for updating computers in its computer lab if you work at school.

Other Questions
Five men take 45 hours to build a wall. How long will it take 9 men working at the same pace to build the same wall? Explain one threat that rising global temperatures could have on the productivity of California agriculture . 5.13 Lab Report Online Form ES APLEASE HELP I NEED IT NOWI WILL GIVE YOU 10 POINTS! I am not under 13. My little brother accidentally did that. So like can I join? My ago is 18 The circumference of a circle is 28 in.What is the diameter of the circle?Responses28 over pi, in.14 over pi, in.square root of 28 over pi end root, in.14 in.I think it is 28/pi but I would like to make sure How might you combat a hybrid plant that has developed the ability to reproduce and is becoming invasive? Determine the volume of the tin in cubic meter. Hint volume of the tin is determined by multiplying the area of the base by the height of the tin Solve for y Sy+x2 =x+8 x+8-x2 O A. y = 5 O B. y=x+8-x2 x-x-8 5 O C. O D. y=x2-x-8 Three students, Nicole, Xavier, and Avani, line up one behind the other. How many different ways can they stand in line? Understanding the FIT* formula for muscle fitness is critical for developing a muscle fitness plan. Complete this worksheet to determine the muscle fitness FIT* formula that best suits your needs.*Because the type of physical activity is specified (muscle fitness), there is no need to include a second T of the FITT formula.1. List three health benefits of muscle fitness that interest you:2. Find the Textbook/ Online Definition of the vocabulary terms.Strength-Muscular endurance -Power -1RM-Reps-Sets-Calisthenics-Use the definition of the vocabulary terms in your own words.Strength-Muscular endurance-Power-1RM -Reps-Sets-Calisthenics- How can you demonstrate this girl in the gym or at home?Strength-Muscular endurance-Power-1RM-Reps-Sets-Calisthenics-3. In terms of progressive resistance exercise (PRE) Also known as weight training, what level is your current level? (Circle one)Beginner (Just starting)Intermediate (lifting for months)Advanced (Lifting for >1 year)4. Identify your favorite activity, or physical activity, that requires muscle fitness. What is it, and how does it relate to muscle fitness? 5. Based on your answer to question 4, answer the following questions:a. For the activity that selected, Do you think you need to develop strength or muscular endurance or both?b. What muscle groups do you need to develop muscle fitness in for this activity?c. Describe any activities you already do that might build your muscle fitness for your activity.6. Identify three PRE guidelines that will be especially important for you to follow. Simplify radical Write the solution as both a single power and a single SOMEONE HELP MEE In 3-5 sentences, respond to the following questions:Do you think Reagan effectively or ineffectively combines the persuasive appeals (practical, emotional, associative) in his speech? Do you think he addresses the audience in a persuasive way? Do the appeals strengthen his message or weaken it? write an essay on why should mayors put public restrooms in parks There is a positive correlation between the number of times the Striped Ground Cricket chirps per second and the temperature in degrees Fahrenheit. If a scatter plot is made with the number of chirps on the horizontal axis and the trend line is found to be y = 3x + 25, then what would you predict the number of chirps per second to be when the temperature is 55 degrees Fahrenheit?1043190 write the equation in standard form for the circle with center (0, -10) passing through (9/2, -16) Which type of metamorphic rock forms when limestone is exposed to heat and pressure? a. slate b. quartzite c. marbled. granite Gestures that can be translated into words, for example, nodding "yes," are ______A. markersB. emblemsC. affect displaysD. regulatorsE. adaptors whats the objective summary in the golden kite, the sliver wind by ray bradbury. I need a 2 to 3 paragraph Which statement best describes the effect of the automobile during the 1920s? A. Mass production of automobiles gave people less leisure time because they had to repair cars. B. Mass production of automobiles allowed more Americans to afford them, so people could move around more easily. C. Mass production of automobiles meant that only the wealthy could afford to purchase them D. Mass production of automobiles meant that many moreAmericans bought them, which made driving on roads difficult. Help me finish the table please!