suppose that a program's data and executable code require 1,024 bytes of memory. a new section of code must be added; it will be used with various values 81 times during the execution of a program. when implemented as a macro, the macro code requires 79 bytes of memory. when implemented as a procedure, the procedure code requires 175 bytes (including parameter-passing, etc.), and each procedure call requires 11 bytes. how many bytes of memory will the entire program require if the new code is added as a macro?

Answers

Answer 1

If the new code is added as a macro, the program will require an additional 81*79=6,399 bytes of memory to store the macro code and data. Therefore, the total memory required by the program will be 1,024 + 6,399 = 7,423 bytes.

Adding the new code as a procedure will require the procedure code to use 175 bytes of memory, and each of the 81 calls to the procedure will require 11 bytes. Therefore, the total memory required by the program will be 1,024 + 175 + (81*11) = 2,210 bytes.

Thus, if the new code is added as a macro, the program will require more memory, but it will be faster since macro expansion happens at compile-time. However, if the new code is added as a procedure, the program will be slower due to the overhead of the procedure call, but it will require less memory. Ultimately, the decision of whether to add the code as a macro or procedure will depend on the specific requirements and constraints of the program.

Find out more about executable code

brainly.com/question/15175413

#SPJ4


Related Questions

At the command prompt, type echo You have $4.50 and press Enter. What is displayed? Why? Which character needs to be protected in the previous command? What are two different ways that you can protect this character from interpretation by the shell?

Answers

At the command prompt, typing echo You have \$4.50 and pressing enter will display the text You have $4.50.

This is because the character '$' needs to be protected from interpretation by the shell in order to be displayed as part of the string. Two different ways to protect this character from interpretation by the shell are by either escaping it with a backslash (\$) or by enclosing it in single quotes (‘$’).

A command prompt is a type of user interface that allows a user to interact with a computer system by typing in commands using a text-based interface. It typically appears as a command line or console window, where the user can enter commands and receive feedback from the system in the form of text-based output. Command prompts are commonly used in operating systems such as Microsoft Windows, macOS, and Linux/Unix, and can be accessed via various methods such as the Start menu, the Terminal application, or by pressing specific keyboard shortcuts.

Learn more about command prompt: https://brainly.com/question/25808182

#SPJ11

Which of the following will give i the values 1, 2, 3, and 4?

A.
for i in range(1, 5):

B.
for i in range(0, 4):

C.
for i in range(1, 4):

D.
for i in range(0, 5):

Answers

The option that will give i the values 1, 2, 3, and 4 is A. for i in range(1, 5):

How to explain the information

The range function generates a sequence of numbers starting from the first argument (inclusive) and ending at the second argument (exclusive).

In option A, the range function generates a sequence of numbers starting from 1 and ending at 4 (exclusive). Therefore, the loop variable i will take on the values 1, 2, 3, and 4.

In option B, the range function generates a sequence of numbers starting from 0 and ending at 3 (exclusive). Therefore, the loop variable i will take on the values 0, 1, 2, and 3.

Learn more about range on

https://brainly.com/question/26098895

#SPJ1

How many values can a binary digit store?
A
A binary digit can store two values at a time.

B
A binary digit can store ten values at a time.

C
A binary digit can store one of two values (0 or 1).

D
A binary digit can store one of ten values (0-9).

Answers

Answer:

A.) A binary digit can store two values at one time

Explanation:

A single bit can only represent two different values. That's may not be very much, but that is still enough to represent any two-valued state.

Please give answers between 500 words.
What have been the major issues and benefits in
Electronic Data Interchanges (EDI) and Web-Based/Internet
Tools?

Answers

The major issues and benefits of electronic data interchange (EDI) and web-based/Internet tools, such as compatibility and standardization, privacy, cost, dependence on internet connectivity, etc.,

One of the challenges of EDI is that it is ensuring compatibility between different systems and  also establishing standardized formats for data exchange. It requires agreement and coordination among trading partners in order to ensure the seamless communication, while there are many benefits that include EDI and web-based tools that enable faster and more efficient exchange of information, eliminating manual processes, paperwork, and potential errors. Real-time data exchange improves operational efficiency and enables faster decision-making. Apart from this, there are many other benefits to these.

Learn more about EDI here

https://brainly.com/question/29755779

#SPJ4

Which type of basic building blocks (constructs) is the following algorithm?

A.Sequence
B.Selection
C.Iteration
D.Iteration and Sequence

Which type of basic building blocks (constructs) is the following algorithm?A.SequenceB.SelectionC.IterationD.Iteration

Answers

The type of basic building blocks (constructs) used in the above algorithm is: A. Sequence.

An algorithm can be defined as a standard formula (procedures) which comprises a set of finite steps or instructions, that is typically used for solving a problem on a computer.

Basically, there are three (3) basic building blocks (constructs) used in an algorithm and these include:

I. Iteration.

II. Sequence.

III. Selection.

Selection is a building block (construct) that is used to determine the set of instruction or step to execute in a program based on a Boolean expression such as:

True or False.Yes or NO.

If the conditional test (grade > 50) is True (Yes), a part of the program is executed, which is to output a "Pass."

Otherwise, the program would execute and output a "Fail" i.e the conditional test (grade > 50) is False (No).

 

Read more: https://brainly.com/question/21172316

Which of the following statements about the DetailsView and FormView controls is not true?
a.
All the fields in a FormView control are rendered as a single table row, but each field in a DetailsView control is rendered as a single table row.
b. The DetailsView control can be easier to work with than the FormView control.
c.
The FormView control can use TemplateField elements, but the DetailsView control can only use BoundField elements.
d.
The FormView control provides more formatting and layout options than the DetailsView control.

Answers

The statement that is not true is: "The FormView control provides more formatting and layout options than the DetailsView control."

This is incorrect as both controls offer similar formatting and layout options. The main difference between the two controls is how they display data. The DetailsView control is designed to display a single record at a time and each field is rendered as a separate table row. On the other hand, the FormView control can display multiple records and all fields are rendered as a single table row.
Both controls can use TemplateField elements to customize their layout and formatting. In fact, the use of TemplateFields is recommended for both controls as it allows for greater flexibility in terms of layout and presentation of data.
In terms of ease of use, it can be argued that the DetailsView control is easier to work with as it requires less setup and configuration. However, this may depend on the specific requirements of the application and the amount of customization needed.
In summary, both the DetailsView and FormView controls offer similar formatting and layout options and can use TemplateField elements for customization. The main difference between the two controls is how they display data, with the DetailsView control displaying a single record at a time and the FormView control displaying multiple records.

Learn more about data :

https://brainly.com/question/31680501

#SPJ11

How might an laaS solution help developers who need a test server to quality control (QC) a new web application? 3) List and discuss three other businesses that your organization could partner with to develop a Community Cloud deployment. If your organization cannot partner with any others, then give three examples of types of businesses that could.

Answers

An laaS (Infrastructure as a Service) solution can benefit developers by providing them with a test server for quality controlling a new web application.

How does an laaS solution assist developers in QCing a new web application?

An laaS solution offers a scalable and flexible infrastructure environment where developers can easily provision virtual servers for testing purposes. It allows developers to quickly set up a test server with the desired specifications and configurations, saving time and effort. They can simulate real-world conditions and test the application's performance, functionality, and compatibility across different platforms and browsers. This ensures that any issues or bugs are identified and addressed before the application is deployed.

By partnering with suitable businesses, a Community Cloud deployment can be developed. Here are three potential partnership opportunities:

1. Web Hosting Providers: Collaborating with web hosting providers would enable the organization to offer integrated hosting services along with their Community Cloud deployment. This partnership would ensure seamless management and accessibility of web applications for users.

2. Software Development Companies: Teaming up with software development companies would allow the organization to leverage their expertise in building and enhancing applications. By integrating their development tools and services into the Community Cloud, users would have access to comprehensive development resources.

3. Network Service Providers: Partnering with network service providers would enable the organization to enhance the connectivity and network capabilities of their Community Cloud. This collaboration would ensure high-speed and reliable access to the cloud infrastructure, improving the overall user experience.

Learn more about test server

brainly.com/question/13109531

#SPJ11

a client sends confidential information to your personal email, rather than your company email. you know this is unacceptable. how do you handle the situation?

Answers

I understand you need help with handling a situation where a client sends confidential information to your personal email instead of your company email.
1. First, do not open any attachments or forward the email to anyone else to maintain the confidentiality of the information.
2. Contact the client immediately and politely inform them that they mistakenly sent the information to your personal email. Request them to resend the information to your company email instead.
3. Once the client has confirmed that they've sent the information to the correct email, delete the email containing confidential information from your personal email account. Ensure that it is also deleted from your trash or deleted items folder.
4. Inform your supervisor or manager about the incident to ensure transparency and to protect yourself in case of any future inquiries regarding the matter. Explain the steps you have taken to resolve the issue.
5. Review your company's policies on handling confidential information and educate the client about the importance of sending sensitive information only to the designated company email addresses.
By following these steps, you can ensure that the situation is resolved in a professional and responsible manner while maintaining the confidentiality of the information.

To know more about personal email visit:

https://brainly.com/question/13969212

#SPJ11

how do I answer question

Answers

Answer:

To answer a question on brainly, there is a add answer button below the question. Please look at the attached, it shows you the add answer button.

Explanation:

Once you click on add answer, brainly will take you to something that looks like a note and all you have to do is type the answer and explanation. Once you do that, click on the add your answer button on the top right corner, and your answer will be posted.

how do I answer question

1. What pricing strategy is used by local electric
distributors/retailers in charging us monthly electric bills?

Answers

Local electric distributors/retailers are the ones that distribute and sell electricity to the consumers.

They need to have a pricing strategy to charge the consumers a fair price for their services. There are different pricing strategies used by these companies to charge the monthly electric bills.One of the most common pricing strategies used by local electric distributors/retailers is the Cost-plus pricing strategy. This strategy involves adding a markup to the total cost of providing the service. The markup is added to cover the expenses and generate a profit for the company. This pricing strategy is commonly used by regulated utilities as the markup is reviewed and approved by the regulatory commission.

The second pricing strategy is the value-based pricing strategy. This strategy involves charging the customers based on the value they receive from the service. For example, a customer who consumes more electricity will be charged more. This pricing strategy is common in competitive markets where different electric distributors/retailers are competing to win customers.The third pricing strategy is the demand-based pricing strategy. This strategy involves charging the customers based on the demand for electricity.

During peak hours, when the demand is high, the price of electricity is high. During off-peak hours, when the demand is low, the price of electricity is low. This pricing strategy is used to encourage the customers to use electricity during off-peak hours and reduce the load during peak hours.In conclusion, local electric distributors/retailers use different pricing strategies to charge the consumers monthly electric bills. The choice of pricing strategy depends on various factors such as the regulatory environment, market competition, and customer demand.

Learn more about customer :

https://brainly.com/question/13472502

#SPJ11

______ is a written agreement, signed by people that outlines the terms and conditions of internet use.

Answers

Answer:

Terms and Conditions is a written agreement, signed by people that outlines the terms and conditions of internet use.

Explanation:

What is the measure of each angle of an equilateral traingle what is that answer is it 30 or 45or 60 or 90 hmmmm

Answers

Answer:

60°

Explanation:

The measure of each angle of an equilateral triangle is 60°.

An equilateral triangle is a kind of triangle where all angles are equal to each other.

The sum of angles of a triangle is equal to 180

A triangle has 3 sides

Calculating the measure of each angle,

a + a + a = 180°

3a = 180°

a  = 180 / 3

Therefore a = 60°

Help me please, with my work in Exel.

Answers

i’m not sure on how I can help

What is the power of 3 shch that it's power is 1/3 ?​

Answers

Answer:

3/1-1

Explanation:

Write a program that asks the student for his name and the month in which he/she was born. Students are then divided into sections, according to the following: Section A: Name starts between A - E Born between months 1 - 6 Section B: Name starts between F - L Born between months 1 - 6 Section C: Name starts between M - Q Born between months 7 - 12 Section D: Name starts between R - Z Born between months 7 - 12 Section E: All others

Answers

The program is an illustration of loops and conditional statements

What is a loop?

A loop is a program statement that is used to perform repetitive operations

What is a conditional statement?

A conditional statement is a statement that is used to make decisions

The main program

The program written in Python, where comments are used to explain each line is as follows:

#This creates an empty list for the sections

A = []; B = []; C = []; D = []; E = []

#This gets input for the number of students

count = int(input("Number of students: "))

#This iterates count times

for i in range(count):

   #This gets the name of each student

   name = input("Name: ").upper()

   #This gets the birth month

   month = int(input("Month: "))

   #The following if conditions determine the section of the student

   if name[0] in ['A','B','C','D','E'] and (month >= 1 and month <=6):

       A.append(name)

   elif name[0] in ['F','G','H','I','J','K','L'] and (month >= 1 and month <=6):

       B.append(name)

   elif name[0] in ['M','N','O','P','Q'] and (month >= 7 and month <=12):

       C.append(name)

   elif name[0] in ['R','S','T','U','V','W','X','Y','Z'] and (month >= 7 and month <=12):

       D.append(name)

   else:

       E.append(name)

#This prints the students in each section

print(A,B,C,D,E)

Read more about loops and conditional statements at:

https://brainly.com/question/24833629

Preset headers and footers cannot have additional information add to the areas.
Group of answer choices

True

False

Answers

the answer to the question is true

Which item is most important for a successful website design?
test all website hyperlinks frequently
specify the target browser
avoid horizontal scrolling
keep the target audience in mind

Answers

The most important part to any website is content. Without content, your website is nothing more than an advertisement, which is not an effective online marketing strategy. The goal of any marketing professional that designs websites should always be to create an online resource for people.

Answer:

I think it is either:

A. Test all website hyperlinks frequently

or

D. Keep the target audience in mind

Explanation:

"necessarily is the mother of computer " justify this statement with respect to the evolution of computer.​

Answers

Explanation:

Computers in the form of personal desktop computers, laptops and tablets have become such an important part of everyday living that it can be difficult to remember a time when they did not exist. In reality, computers as they are known and used today are still relatively new. Although computers have technically been in use since the abacus approximately 5000 years ago,

Please help me with these definitions!!!!!!

Type 1 Hypervisor

Type 2 Hypervisor

Virtual Box

Virtual Machine

Virtual Machine Escape

Virtual Machine Monitor

Virtual Machine Sprawl

VMWare

Application Cell

Answers

Answer:

1st one . A bare-metal hypervisor (Type 1) is a layer of software we install directly on top of a physical server and its underlying hardware. mainly found in enterprise environments.

2nd. A Type 2 hypervisor, also called a hosted hypervisor, is a virtual machine manager that is installed as a software application on an existing operating system (OS). ... Examples of this type of hypervisor include VMware Fusion, Oracle Virtual Box, Oracle VM for x86, Solaris Zones, Parallels and VMware Workstation.

3rd. VirtualBox is open-source software for virtualizing the x86 computing architecture. It acts as a hypervisor, creating a VM (virtual machine) where the user can run another OS (operating system).

4th.  a virtual machine is an emulation of a computer system. Virtual machines are based on computer architectures and provide functionality of a physical computer. Their implementations may involve specialized hardware, software, or a combination.

hope it helps x

Explanation:

4

What tab group would you use to
change the format of cell A2 to match
cell A3?
O Cells
O Styles
O Font
O Alignment
O Number

Answers

Answer:

number......................

The tab group that would you use to change the format of cell A2 to match cell A3 is style. The correct option is B.

What is cell format?

The Format Cells pop - up window has six tabs: Total count, Alignment, Font, Border, Patterns, and Protection.

The Format Cells feature allows users to change the formatting of one or more cells and/or the appearance of their values in the sheet without changing the numbers themselves.

The Format Cells contain a number of control options that allow users to change the view of the displayed data within the cells.

A cell value can be one of four types: empty, numeric, text, Boolean, or error. Cell values can be displayed in a variety of ways.

Choose the cells. Choose a style from Home then Cell Style.

Thus, the correct option is B.

For more details regarding cell format, visit:

https://brainly.com/question/24139670

#SPJ6

There are numerous strict and steadfast rules when it comes to composition.

answers:
true
false

Answers

Answer:

false

Explanation:

none ¯\_(ツ)_/¯

You use parameters to control your shape's location and size.


Can you think of any other situations in which parameters might be useful?

Answers

Yes, parameters can be useful in a variety of situations beyond controlling a shape's location and size. Some examples include:

Simulation and modeling: Parameters can be used to control variables in a simulation or model, such as the rate of population growth or the strength of a material.

Machine learning: Parameters can be used to control the behavior of machine learning algorithms, such as the learning rate or the number of hidden layers in a neural network.

What are the parameters  about?

The other ways that parameters can be useful are:

Robotics: Parameters can be used to control the behavior of robotic systems, such as the speed and direction of a robot's movement or the settings of a sensor.

Control systems: Parameters can be used in control systems to adjust the behavior of a system, such as the gain or setpoint in a feedback control loop.

Lastly, Game development: Parameters can be used to control various aspects of a game, such as the difficulty level, the speed of characters or the rate of spawning of enemies.

Learn more about parameters  from

https://brainly.com/question/28175212

#SPJ1

this website is using a security service to protect itself from online attacks.

Answers

Answer:

yes it has an ssl certificate making it impossible to hack

A garments manufacturing company buys various types of natural and synthetic materials to produce clothes. Which material is a synthetic material?

A. cotton
B. nylon
C. jute
D. silk
E. linen

I need this answer please!! 20 points

Answers

a is the correct answer of the question

Answer: A.

Explanation:

match each artificial intelligence (ai) technique with its definition. - represent the knowledge of experts as a set of rules that can be programmed so that a computer can assist human decision makers. - software that can identify patterns in very large databases without explicit programming although with significant human training. - loosely based on human neurons, algorithms that can be trained to classify objects into known categories based on data inputs. - algorithms based loosely on evolutionary natural selection and mutation, commonly used to generate high-quality solutions to optimization and search problems. - algorithms that make it possible for a computer to understand and analyze natural human language. - systems that can view and extract information from real-world images. - use of machines that can substitute for human movements as well as computer systems for their control and information processing. - software agents that use built-in or learned knowledge to perform specific tasks or services for an individual. a. robotics b. computer vision systems c. neural networks d. genetic algorithms e. natural language processing f. machine learning g. intelligent agents h. expert systems

Answers

The top AI methods—heuristics, natural language processing, artificial neural networks, machine learning, support vector machines, and markov decision processes—will be covered in this essay.

How does artificial intelligence work?

The replication of human intelligence functions by machines, particularly computer systems, is known as artificial intelligence. Expert systems, natural language processing, speech recognition, and machine vision are some examples of specific AI applications.

What fundamental principle underpins artificial intelligence?

Artificial intelligence is founded on the idea that human intelligence can be described in a way that makes it simple for a computer to duplicate it and carry out activities of any complexity. Artificial intelligence aims to emulate cognitive processes in humans.

To know more about Artificial intelligence visit;

https://brainly.com/question/23824028

#SPJ4

Emma is writing a program to encrypt text entered by a user. Only letters, spaces and punctuation marks can be encrypted. Each letter in the text is replaced by the letter three places further down the alphabet. A is replaced by D, b by e, … Y by B, z by c. Spaces and punctuation marks are not changed.
Complete the test plan below by stating, for each input data and expected outcome, the type of test and a reason for the test.

Answers

Answer:

,

Explanation:

Which steps do you need to follow to create a new excel workbook? check all that apply.

Answers

To create a new Excel workbook, you need to follow the following steps  include opening Excel, accessing the File menu, selecting "New," choosing a template or a blank workbook, and finally, creating the workbook.

Open Microsoft Excel on your computer. Click on the "File" tab at the top-left corner of the Excel window.Select "New" from the options presented in the File menu.A new window will open, showing various template options. Select a template that suits your needs or click on "Blank Workbook" to start with a blank sheet.Click on the "Create" button to create a new workbook based on your selection.

The new workbook will open, and you can start entering data, formatting cells, and performing calculations.In the steps to create a new Excel workbook include opening Excel, accessing the File menu, selecting "New," choosing a template or a blank workbook, and finally, creating the workbook.

To know more about excel visit:

https://brainly.com/question/29313916

#SPJ11

HELP asap please... ​

HELP asap please...

Answers

Answer:

I have absolutely no idea bruddah.

Explanation:

Soz!

How do i fix this? ((My computer is on))

How do i fix this? ((My computer is on))

Answers

Answer:

the picture is not clear. there could be many reasons of why this is happening. has your computer had any physical damage recently?

Answer:your computer had a Damage by u get it 101 Battery

and if u want to fix it go to laptop shop and tells him to fix this laptop

Explanation:

to the nearest %, paying on the 30th day for a 1/30, net/60, gives an annual return of (just write the number)

Answers

Yearly return is calculated as follows: (1% / (1-1%%)) x (365 / (60 - 30)) = (1% / 0.99) x (365 / 30) = 1.0101 x 12.1667 = 12.2908, By rounding this amount to the nearest percentage, we arrive at a 12% yearly return.

What does the phrase "credit terms of 1/10 net 30" mean?

The discount terms are 1/10, n/30, which means that if payment is made within 10 days, there will be a 1% discount; however, after that point, payment is not eligible for a discount and is considered past due 30 days after the invoice date.

What does 1/10 Net 60 indicate in terms of credit?

A customer must pay the invoice in full within 60 days or within 10 days to earn a discount of 2% or 1%, respectively. The other option is to pay the invoice in full within 10 days.

To know more about percentage visit:-

https://brainly.com/question/15921780

#SPJ1

Other Questions
After 6 new students entered the Happy Hearts Childcare Center and 2 students exited, there were 3 times as many students as before. How many students were present before students entered and exited the center? for quality assurance, what performance indicators would youmeasure at each step in the process (left to right) and whichlayers (top to bottom) to track what is working well versus whatneeds to be a pharmaceutical company may go to an organization in a completely different industry such as aerospace to learn project management skills in the process known as _____ Please help me with this question!! Complete the following sentences with the appropriate reflexive pronoun.levanta temprano, y ellamaquillo muy poco, pero mi madre y mimaquillan mucho.vistes muy elegante, y nosotros1. El2. Yohermana3. Telegante tambin.levanta tarde.vestimos in Engineering Mechanics: Statics, 2nd edition textbook (by Gary L. Gray) - the solution posted in the textbook solutions is incorrect - Bx = 12.22 not 12.33, and this changes the entire solution. Please solve the problem accordingly. Which of the following would be determined using managerial accounting reports? a. Manufacturing cost of each item produced b. Earnings per share c. Return on equity d. Working capital for the period What makes a good team when it comes to a portfolio of investments and why? Tara bought 12 yards of fabric to make tote bags. Each bag requires 1.25 yards of fabric. Write an equation that shows how the number of yards or fabric remaining, depends on the number of tote bags Tara sews, x. Determine the values of P and E. for each of the following signals: (a) x1(t) = e^-2r (t) Can someone PLEASE help me?? I need help ASAP. Due today!! I will give brainliest!! Read directions: Find five examples of figurative language from the text and identify the type of figurative language: idiom, smile, metaphor, or oxymoron. Explain of the meaning. Please help me!! . XYZ Ltd is a listing company. Charlie is analyzing XYZ's profitability and predicting XYZ's performance in the near future. How will the future cash flow impact the earnings per share? Which of the following is NOT one of the benefits of current-year and cumulative expenditures for camera/drone product R&D? Reducing future warranty claims and the associated costs of warranty repairs Boosting a company's P/Q ratings (the size of this benefit varies with the current and cumulative amounts spent and shows up in the P/Q ratings at the beginning of the following year) Increasing the productivity of PATs in assembling camera/drone models (because of easier to assemble product designs); the size of this benefit occurs immediately and varies according to the current and cumulative amounts spent Providing a pipeline of proven ways to produce and market new and improved camera/drone designs and models, thereby enabling the company to outsell rival brands and become the market share leader in all four geographic regions. o Lowering the costs of components, accessories, and enhancement features used in assembling cameras/drones Rewrite The Complex Number 3 (Cos 3(Cos(5) + I Sin(5)). In A + Bi Form. Use Exact Values Only In A Assume the universes are the same size Think about your best high scholl algebra, these formulas are very much like that Due Sunday October 15 Cost GRPS CPP Impressions CPM TV 8500000 1500 A 480000000 B Radio 350000 250 1400 80000000 Digital 150000 100 D 32000000 4.69 Magazines 500000 125 E F G Total H j K L which of the following is true of strategic planning in a firm? group of answer choices it deals with adapting the firm to take advantage of changing marketing opportunities. it involves preparing short-term investment objectives at the product level. it focuses on the firm's internal environment rather than the external environment. it occurs at the business-unit, product, and market levels rather than at the corporate level. it deals with maintaining the company's current business ventures. Your client needs to invest about $87,245 more today to meet her goal to accumulate money for her child's educationbut she does not have it now! When your client discovers her saving will still not accomplish her goal , she asks you to determine the additional amount she would need to save each year at the end of the year to reach the goal if she earns 3.50 percent compounded annually on her money. So the question is, what additional amounts invested at the end of each year for the next 9 years are equivalent to $87,245 invested today?Round the answer to two decimal places.Your Answer: Discuss how an economist could use calculus, to advise a firm on how to maximise profits. In particular, consider the case where a firm has estimated an equation in which their Total Cost of production is a function of quantity they produce; and estimated the equation of the demand curve, in which price is dependent on the quantity they sell (assuming they sell all the goods they make). Explain how this information can be combined into a single equation for the firms total profit (dependent on quantity); and how calculus can then be used to find the profit-maximising level of output. Include, in your answer, whether this optimisation problem requires differentiation or integration. Also discuss how the second-order condition can be used to check the output level gives the maximum profit, rather than a minimum profit. Type your answer into the box. The word length should be about 500 words (plus or minus 10%). when you plan the test runs for a program, you should do all but one of the following. which one is it? a.list the expected results for each test run b.list the expected exceptions for each test run c.list the valid entries for each test run d.list the invalid entries and unexpected user actions for each test run In Roll of Thunder Hear My Cry who is narrating the story?