use the insert function command to the left of the formula bar to search for the median function. use the function arguments dialog box to select the range ​b8:b12​ to enter =median(​b8:b12​) in cell ​b18​ to calculate the median value of the ​house costs​.

Answers

Answer 1

To calculate the median value of house costs using Excel, follow these steps:

1. Use the insert function command to the left of the formula bar to search for the median function.

2. Use the function arguments dialog box to select the range B8:B12 and enter "=median(B8:B12)" in cell B18.

To calculate the median value in Excel, the median function can be used. The first step is to locate the function using the insert function command. This command is typically represented by a symbol (fx) or a button with the label "Insert Function" and is located near the formula bar.

After clicking on the insert function command, a dialog box will appear where you can search for the median function. In the search bar, type "median" and select the median function from the search results.

Once the median function is selected, a function arguments dialog box will appear. In this dialog box, you need to specify the range of values for which you want to calculate the median. In this case, select the range B8:B12, which represents the house costs.

After selecting the range, click OK to close the function arguments dialog box. The formula "=median(B8:B12)" will now be entered into cell B18, and the median value of the house costs will be calculated.

Learn more about median

brainly.com/question/17090777

#SPJ11


Related Questions

level of difficulty easy/medium objectives familiarize the student with: using the if-else instruction to branch the control path; building a complete program that solves simple real-life problems. scenario once upon a time there was a land - a land of milk and honey, inhabited by happy and prosperous people. the people paid taxes, of course - their happiness had limits. the most important tax, called the personal income tax (pit for short) had to be paid once a year, and was evaluated using the following rule: if the citizen's income was not higher than 85,528 thalers, the tax was equal to 18% of the income minus 556 thalers and 2 cents (this was the so-called tax relief) if the income was higher than this amount, the tax was equal to 14,839 thalers and 2 cents, plus 32% of the surplus over 85,528 thalers. your task is to write a tax calculator. it should accept one floating-point value: the income. next, it should print the calculated tax, rounded to full thalers. there's a function named round() which will do the rounding for you - you'll find it in the skeleton code in the editor. note: this happy country never returns money to its citizens. if the calculated tax is less than zero, it only means no tax at all (the tax is equal to zero). take this into consideration during your calculations. look at the code in the editor - it only reads one input value and outputs a result, so you need to complete it with some smart calculations. test your code using the data we've provided.

Answers

The tax calculator program determines the tax amount based on income using specific rules. It calculates the tax as a percentage of the income, with different rates for different income ranges. The code rounds the calculated tax to the nearest whole number and handles cases where the tax amount is negative. The program helps individuals in a fictional country calculate their personal income tax.

def calculate_tax(income):

   if income <= 85528:

       tax = income * 0.18 - 556.02

   else:

       tax = 14839.02 + (income - 85528) * 0.32    

   if tax < 0:

       tax = 0    

   rounded_tax = round(tax)

   return rounded_tax

income = float(input("Enter the income: "))

calculated_tax = calculate_tax(income)

print("The calculated tax is:", calculated_tax)

This code defines a function calculate_tax that takes the income as input and calculates the tax amount based on the provided rules.

It uses the if-else statement to branch the control path based on the income value.

The calculated tax is rounded using the round() function, and if the tax amount is less than zero, it is set to zero.

To learn more on Programming click:

https://brainly.com/question/14368396

#SPJ4

which major category of executive information system application would focus on the process a software company used to launch a new application?

Answers

The major category of executive information system application that would focus on the process a software company used to launch a new application is a Project Management System.

This type of system would help executives track the progress of the project, monitor timelines and budgets, and ensure that all aspects of the launch are running smoothly. It would provide real-time updates and allow for collaboration among team members to ensure that the project is delivered on time and meets all objectives.

In the context of launching a new software application, a Project Management System would provide executives with a centralized platform to track the progress of the project. It would enable them to monitor key milestones, timelines, and budgets associated with the launch. Real-time updates and visual representations, such as Gantt charts, would provide a clear overview of the project's status.

Furthermore, a Project Management System would facilitate collaboration among team members involved in the launch process. It would offer features such as task assignment, document sharing, and communication tools, enabling efficient coordination and communication within the project team. Executives can oversee the allocation of resources, manage dependencies, and address any bottlenecks that may arise.

Learn more about the software:

https://brainly.com/question/28224061

#SPJ11

if the variable named box had the user-defined type rectangletype defined by struct rectangletype { float length; float width; float height } what expression would be used to reference the length of box?

Answers

Box.length expression would be used to refer to the length of box if the user-defined type rectangletype for the variable named box was specified by struct rectangletype as float length, float width, and float height.

A user-defined type is what, exactly?

An existing data type can be used as the basis for a user-defined data type (UDT). The built-in kinds that are already accessible can be expanded via UDTs, and you can even develop your own unique data types. Six user-defined kinds exist: Unique kind. formatted type.

User-defined type declaration: what is it?

Personal Type Declarative declarations are those in which the user specifies the data type. The most popular data types include struct, Union, enum, typedef, etc.

To know more about user-defined visit :-

https://brainly.com/question/22574321

#SPJ4

_____ technologies help to fight software piracy and prevent unauthorized copying of digital content.
(a) Encryption
(b) Blockchain
(c) Digital watermarking
(d) Authentication

Answers

The technology that helps to fight software piracy and prevent unauthorized copying of digital content is encryption. Encryption technology is an excellent way to secure your data from unauthorized access. Encryption is the process of transforming the plaintext into an unreadable format using an algorithm. Encrypted data cannot be decrypted or read by unauthorized persons.

What is Encryption?

Encryption is the process of converting electronic data into ciphertext or code to protect its confidentiality and privacy from third-party access. An encryption key is required to convert the ciphertext back into the original form to be read. Encryption is a critical technology for maintaining data security. In general, the primary purpose of encryption is to protect the privacy and confidentiality of sensitive data.

What is Software Piracy?

The illegal distribution of software is known as software piracy. It is a severe crime in which unauthorised software is distributed, sold, or used. The crime can range from copying and distributing software illegally to tampering with software products to sell them under a false name or even providing unauthorized access to software.

What is Digital Content?

Any digital data that is transmitted electronically and can be used to create a wide range of media content types such as text, images, video, and audio are referred to as digital content. The files can be anything from simple text files and documents to multimedia content such as images and videos, which are increasingly in demand for various online platforms.

To know more about file encryption visits :-

brainly.com/question/29354739

#SPJ11

On the cities worksheet, click cell f4 and enter a formula that will subtract the departure date (b1) form the return date (b2) and then multiply the result by car rental per day value (f3)

Answers

=(+B2-B1)*F3 is what you need to enter in cell F4

Excel functions usually begin with the equal to sign, "=", Hence, the excel formula which does the calculation stated above is =(B2 - B1)*F3

The operation in the bracket is performed first, which uses the subtraction operation to deduct the departure date from the return date.

The result of the bracketed operation is then multiplied by the number of car rentals per day, f3.

Hence, the required function is =(B2 - B1)*F3

Learn more : https://brainly.com/question/14459057

What is the benefit of hosting a website on a personali
O A.
lesser cost of buying hardware
B. good Internet speed
o c.
better cooling of web server machines
D.
easier backups

Answers

I believe the answer is D :)

Find the worst case runtime (big-O notation) for the following pseudo code which returns true if an integer n is prime, false if it is not prime. Write the comparison made that the big-O bounds. For example, if 3n+1 comparisons are made, then the answer is O(n), but 3n+1 must be included in the answer.

Answers

The worst case runtime for the following pseudo code can be found by analyzing the number of iterations the for loop must perform. The for loop runs from i = 2 to i < n, and checks if n is divisible by i. The maximum number of iterations is n-2, when n is prime. Therefore, the worst case runtime is O(n).

function is_prime(n):

   if n < 2:

       return False

   for i in range(2, n):

       if n % i == 0:

           return False

   return True

The comparison made for the big-O bound is the number of iterations the for loop must perform, which is n-2.

To know more about pseudo click here:

brainly.com/question/30076572

#SPJ4

A type of query that is placed within a where or having clause of another query is called.

Answers

A type of query that is placed within a WHERE or HAVING clause of another query is called a subquery or a nested query. A subquery is a query that is embedded within another query and is used to retrieve data that depends on the results of the outer query.

The subquery is enclosed in parentheses and is typically used to filter or manipulate data based on specific conditions.

Subqueries can be used in various scenarios, such as filtering rows based on a condition, performing calculations, retrieving aggregate values, or comparing values from different tables. They allow for more complex and targeted data retrieval by breaking down a complex problem into smaller, more manageable queries.

The results of a subquery are used as inputs or conditions for the outer query, allowing for more precise data manipulation and analysis. Subqueries can be written in different forms, including scalar subqueries (returning a single value), row subqueries (returning multiple rows), and correlated subqueries (referencing the outer query).

Overall, subqueries provide a powerful tool in SQL to perform intricate data manipulations and enable more advanced querying capabilities.

Learn more about query here:

https://brainly.com/question/33594246

#SPJ11

Describe a feature of a receptionist and explain how she deals with external customers. ​

Answers

Answer:

A receptionist is a (administrator) who deals with tasks such as, answering a phone call, and giving information to customers. They deal with external customers by letting them talk and not interrupting them..

Can somebody smart help me

Can somebody smart help me

Answers

Answer:

i think it is End tag,A

To uncompress the data back into its original binary state, you simply reverse the process. This technique is an example of what type of compression?

Answers

Answer:

losless compression

Explanation:

Click to review the online content. Then answer the question(s) below, using complete sentences. Scroll down to view additional questions.
Online Content: Site 1

Describe the ways in which the speakers can cause difficulty in the listening process. (Site 1)

Answers

Ways in which speakers can cause difficulty in the listening process are speaking indistinctly, rapidly, or impolitely, leading to disinterest and intimidation.

Challenges in the listening process

We must explain here that we do not know which site we should access to obtain information for this question. Therefore, we will provide you with an answer that will likely help you, containing the most common difficulties and challenges concerning the listening process.

It can be challenging to listen to someone who speaks softly, indistinctly, curtly, rapidly, tediously, or in a discourteous tone. Moreover, if the speaker expresses something contentious or impolite or loses concentration while speaking, it can lead to the listener feeling uneasy or disinterested in what is being conveyed.

Learn more about the listening process here:

https://brainly.com/question/806755

#SPJ1

The control panel contains the number of

Answers

A computer system's control panel often has a number of categories, which are groupings of related settings and functions that the user may access and alter.

What are the functions oft he Control Panel?

The Control Panel is a Microsoft Windows component that allows you to see and alter system settings.

It is made up of a collection of applets that let you to install or remove hardware and software, control user accounts, change accessibility features, and access networking settings.

The control panel handles peripheral devices and interacts between them and the host computer.

Learn more about  Control Panel at:

https://brainly.com/question/31921377

#SPJ1

Which of the following is true of equilibrium? *
A.Equilibrium is when all prices of supply are the same as all prices of demand
B.Equilibrium is when quantity supplied is equal to quantity demanded
C.Equilibrium is when consumers are able to buy as much as possible at the lowest
price while producers are able to sell as much as possible at the highest price
D.Equilibrium is impossible to achieve in a market economy

Answers

B, it’s when the supply and demand are equal

define a symbolic eqquation for each and solve it using matlab symbolic capabilty could you solve these equations by using matricees

Answers

Yes, symbolic equations can be defined for each and solved using MATLAB symbolic capability. It is also possible to solve these equations using matrices.

The following are the symbolic equations and their solutions using MATLAB:

Symbolic Equation:x^2 + 5x + 6 = 0. Solution:x = [-3,-2]Symbolic Equation:2y^2 - 7y + 3 = 0. Solution:y = [1/2,3/2]Symbolic Equation:3z^2 - 11z + 6 = 0. Solution:z = [1/3,2]

To solve these equations using matrices, we can represent the equations as matrices of the form AX = B. Then we can solve for X using the equation X = A^-1B, where A^-1 is the inverse of A.

Here are the matrices for the above symbolic equations: 1. Matrix for the equation x^2 + 5x + 6 = 0: A = [1,5,6] and B = [0,0]. The solution for x is:x = [X11, X12] = [-3, -2]2.

Matrix for the equation 2y^2 - 7y + 3 = 0: A = [2,-7,3] and B = [0,0]. The solution for y is:y = [X21, X22] = [1/2, 3/2]3. Matrix for the equation 3z^2 - 11z + 6 = 0: A = [3,-11,6] and B = [0,0].The solution for z is:z = [X31, X32] = [1/3, 2]

Learn more about symbolic equations: brainly.com/question/31497643

#SPJ11

1)Which tool can you use to find duplicates in Excel?
Select an answer:
a. Flash Fill
b. VLOOKUP
c. Conditional Formatting
d. Concatenation
2)What does Power Query use to change to what it determines is the appropriate data type?
Select an answer:
a.the headers
b. the first real row of data
c. data in the formula bar
3)Combining the definitions of three words describes a data analyst. What are the three words?
Select an answer:
a. analysis, analyze, and technology
b. data, programs, and analysis
c. analyze, data, and programs
d. data, analysis, and analyze

Answers

The tool that you can use to find duplicates in Excel is c. Conditional Formatting

b. the first real row of datac. analyze, data, and programs

What is Conditional Formatting?

Excel makes use of Conditional Formatting as a means to identify duplicate records. Users can utilize this feature to identify cells or ranges that satisfy specific criteria, like possessing repetitive values, by highlighting them.

Using conditional formatting rules makes it effortless to spot repeated values and set them apart visually from the other information. This function enables users to swiftly identify and handle identical records within their Excel worksheets, useful for activities like data examination and sanitation.

Read more about Conditional Formatting here:

https://brainly.com/question/30652094

#SPJ4

What are some uses for a class webpage?

Answers

Answer:

The webpage, either classroom- or grade-level, can be designed to include numerous items that are helpful to parents, community members, and students. It provides a place for parents to go after hours to view information about homework assignments, calendar of events, classroom pictures, study links, and more.

An NOR gate with inverters connected to each input behaves like which gatea. AND b. OR c. XOR d. NAND

Answers

Select option (d) NAND gate. An NOR gate with inverters connected to each input behaves like a NAND gate.

This is because an NOR gate with inverters will have an output that is the complement of the output of a NOR gate.

Thus, if we apply De Morgan's law to the output of an NOR gate with inverters, we can see that it is equivalent to the

output of a NAND gate.

In other words, the NOR gate with inverters acts as a NAND gate with inverted inputs.

Therefore, option (d) is the correct option.  An NOR gate outputs a 0 when any of its inputs are 1.

This behavior is consistent with the NAND gate, making it the correct answer.


To know more about visit:

brainly.com/question/29102868

#SPJ11

how do we prevent electrical problems as prescribe by the course?​

Answers

Answer:

Check your electrical cords.

When you are done with an electrical appliance, do not rip the cord out of the wall.

Electrical cords should not be hidden from plain sight.

Do not run electrical cords underneath furniture, rugs or carpets.

Remember that water and electricity do not mix.

(i hope this helps id really know if i answered ur question right)

:)

Explanation:

Use the drop-down menus to complete the steps to create and use an update query. 1. Create a query with the required tables and fields. 2. On the Design tab, in the Query Type group, click . 3. In the row, enter the parameters and their data types, and click OK. 4. Use the command to get a better view. 5. Save, close, and run the query. Click Yes in the warning dialog boxes. 6. Enter the value and click OK each time the Enter Parameter Value dialog box appears. 7. Click Yes in the warning dialog box to update the row

Answers

When prompted with a warning dialog box to update the row, click "Yes" to apply the changes.
You have successfully created and used an update query in Microsoft Access.

Here are the steps to create and use an update query:
1. Open Microsoft Access and create a query that includes the tables and fields you want to update.
2. Select the "Design" tab from the ribbon menu, then click on the "Query Type" group. From the drop-down menu, select "Update Query".
3. In the "Criteria" row for the field you want to update, enter the new value you want to apply to that field. Be sure to select the appropriate data type for the parameter, then click "OK".
4. To view the records that will be updated, click on the "View" button from the "Results" group.
5. Save the query and then close it. Run the query by clicking on the "Run" button from the "Results" group. When prompted with warning dialog boxes, click "Yes" to proceed.
6. When the "Enter Parameter Value" dialog box appears, enter the value you want to apply to the field and click "OK". Repeat this step for each parameter value that appears.

To learn more about Microsoft access Here:

https://brainly.com/question/31237339

#SPJ11

Realiza una tabla acerca de los escenarios de usos más comunes de Excel.

Answers

Answer:

Microsoft Excel es una hoja de cálculo producida por Microsoft. La aplicación es ampliamente utilizada en empresas e instituciones, así como por usuarios domésticos. Su uso principal es realizar cálculos (por ejemplo, gastos) compilados en forma tabular. Para este uso, se aplican numerosas funciones matemáticas, financieras y de base de datos disponibles en el programa. La duplicación semiautomática de las fórmulas creadas con el uso de diferentes variantes de direccionamiento (direccionamiento relativo, direccionamiento absoluto, direccionamiento mixto) también es de gran importancia. Microsoft Excel también se utiliza para crear muchos tipos de gráficos, útiles, entre otros, en física, matemáticas y economía. También incluye un sistema para la elaboración de informes utilizando el llamado tablas dinámicas, utilizadas en la realización de análisis comerciales.

write any two features of computer?​

Answers

Answer:

its fast and has great accuracy

Explanation:

Any two features of computer are:

1.It make our work more easier.

2. It can work for hours without creating any errors

Consider the following method:


public static void mix(String word, String letter)

{

int counter = 0;

while(word. IndexOf(letter) > 0)

{

if(word. Substring(counter,counter + 1). Equals(letter))

{

word = word. Substring(0, counter) + "0"

+ word. Substring(counter +2, word. Length());

}

counter++;

}

System. Out. Println(word);

}


What value word would be printed as a result of the call mix("Hippopotamus", "p")?


Hippopotamus



Hi0o0tamus



Hi00o0otamus



Hiootamus



Hi0po0otamus

Answers

Answer:

The value that would be printed as a result of the call mix("Hippopotamus", "p") is Hi0po0otamus.

The method starts by initializing the counter variable to 0. It then enters a while loop that continues as long as the IndexOf method returns a value greater than 0. This means that the loop will continue as long as the letter "p" is found in the word.

Inside the loop, the code checks if the character at the current position in the word (determined by the counter variable) is equal to the letter "p". If it is, it replaces that character with the character "0" and updates the value of the word variable. If it is not, the counter variable is incremented and the loop continues.

Since the word "Hippopotamus" contains two occurrences of the letter "p", the loop will run twice and replace both occurrences with "0", resulting in the output Hi0po0otamus.

Explanation:

Select the correct answer
Which filter enhances the color contrast around the edges of an image?

A. Texture filters

B.Sharpen filters

C.Blur filters

D.Noise filters

Answers

Answer: C. Blur filters

Explanation:

The unsharp mask filters or blur filters can be used for professional color correction. This will adjust the contrast of the image. Edge details and may produce a darker and lighter line on all side of the edges. This helps in creating illusion or blur image giving a sharp contrast and sharper image.

So, the color answer C. Blur filters

Answer:

B, Sharpen Filters

Explanation:

i got it right lol

Complete the sentence.

Career and technology student organizations hold events to raise money for a charity. This is called __________

O conference
O competition
O networking
O philanthropy

Answers

The answers is D. Philanthropy

Discuss two business information systems that are used in two different sectors in a modern economy.

Answers

Explanation:

Two business information systems that are used in two different sectors in a modern economy are:

Transaction Processing System (TPS):

The Transaction Processing System (TPS) is a type of data system for capturing, storing, updating and recovering a company's data operations. Transaction systems often try to provide consistent response times to requests even if this is not as important as in real-time systems.

Management Information System (MIS)

MIS is the study of persons, technological systems and associations between them. Management Information Systems (MIS) Professionals at MIS allow businesses to profit maximally from staff, facilities and business process expenditure. MIS is a field of people with a focus on technological support.

a bluetooth pin code requires the entry of a pin that is how many digits in length

Answers

A Bluetooth pin code is typically four digits in length. This pin code is used to establish a secure connection between two Bluetooth devices, such as a phone and a speaker.

The four-digit length is that it strikes a balance between security and convenience. A pin code that is too short may be easy for someone to guess or brute force, while a pin code that is too long may be cumbersome to enter and remember. Four digits provide a decent level of security without being too difficult to use.


Bluetooth devices often use a 4-digit PIN (Personal Identification Number) to establish a secure connection between devices. This PIN ensures that only authorized users can access and use the connected Bluetooth devices.

To know more about pin code visit:-

https://brainly.com/question/17034126

#SPJ11

is a security measure in which users are required to identify themselves only once before accessing several different systems which are linked through a network.

Answers

The security measure you are referring to is called Single Sign-On (SSO). It allows users to authenticate themselves once and gain access to multiple interconnected systems within a network.

Single Sign-On (SSO) is a centralized authentication mechanism that enables users to log in once with a single set of credentials, such as a username and password, and then gain access to multiple interconnected systems or applications. Once the user is authenticated, they can navigate seamlessly between different systems without the need to re-enter their credentials for each individual system. SSO improves user experience by eliminating the need to remember and manage multiple login credentials, and it also enhances security by enforcing stronger authentication measures and centralizing access control. It is widely used in organizations to streamline access to various resources while maintaining security and user convenience.

Learn more about network here:

https://brainly.com/question/15002514

#SPJ11

Keli is unable to find a shape that meets her needs. Which feature in Power Point should she use to create shapes that are completely customized?

Answers

Answer:

I just use the search bar in the app and type in shapes. Then you right click on the shape and click on edit points to shape it into whatever shape you want.

Explanation:

I went into the PowerPoint and did it myself.

u are the desktop administrator for your company. you would like to manage the computers remotely using a tool with a graphical user interface (gui). which actions should you take to accomplish this? (select two. each answer is a possible solution.) answer use telnet to connect to each computer. send an assistance invitation. run remote shell to manage each computer. open computer management and connect to each remote computer. establish a remote desktop con

Answers

As a desktop administrator for your company, managing computers remotely using a tool with a graphical user interface (GUI) can save you time and increase efficiency. Here are two possible solutions:


1. Open computer management and connect to each remote computer:
Computer Management is a built-in tool in Windows that allows you to manage local or remote computers. To manage remote computers, you need to first enable Remote Desktop on each computer you want to connect to. Then, from the Computer Management console, you can right-click on the "Computer Management" node, select "Connect to another computer," and enter the name or IP address of the remote computer. This will allow you to remotely manage the computer, including tasks such as configuring services, managing disks, and monitoring performance.

2. Establish a remote desktop connection:
Remote Desktop Connection (RDC) is another built-in tool in Windows that allows you to connect to a remote computer and control it as if you were sitting in front of it. To establish a remote desktop connection, you need to first enable Remote Desktop on the remote computer and configure firewall settings to allow RDC traffic. Then, from your local computer, you can launch Remote Desktop Connection, enter the name or IP address of the remote computer, and enter your credentials. This will allow you to remotely access the computer's desktop, run applications, and perform any other tasks as if you were physically there.

In summary, to manage computers remotely with a GUI, you can use Computer Management to connect to each remote computer, or establish a Remote Desktop Connection to control the remote computer's desktop. Both methods require enabling Remote Desktop on each computer and configuring firewall settings to allow the connection.

For more such question on console

https://brainly.com/question/27031409

#SPJ11

Other Questions
Assuming that wine is a normal good, an increase in consumer income, other things being equal, will? A simple random sample of 80 items resulted in a sample mean of 90. the population standard deviation is = 10. (a) compute the 95onfidence interval for the population mean The image shown below shows the first 3 stages of a pattern. If the pattern continues, how many tiles would be in the 22nd stage?A.44B.47C.49D.107 why do definitions of crime change over time How did william randolph hearst's newspapers influence the spanish-american war? o his newspapers said the spanish were launching a secret attack on u.s. soil. his newspapers blamed the spanish for the sinking of the battleship maine in havana harbor. his newspapers revealed the spanish had plans to assassinate president william mckinley. his newspapers ran editorials depicting spain as evil, which helped fuel a pro-war feeling in america. Carla Eppelstein is saving her babysitting money to buy a bicycle. She usually babysits a total of 11 to 16 hours per week and charges $4.50 per hour. If the bicycle she wants is $147, in about how many weeks will she be able to pay for it representation of the cross section of an axon membrane showing all of the relevant ion concentrations, ion channels, and pumps when the axon is at rest. Select the correct answer.Which question would best support a readers analysis of the image with the text? A. What is the length of the Grand Canyon? B. How did the author acquire this photograph? C. What causes echoes in canyons? D. Why did the author choose this photograph? TCBW last year had an average collection period (days sales outstanding) of 33 days based on accounts receivable of $350,000. All of the firm's sales are made on credit. The firm expects sales this year to be the same as last year. However, the company has begun a new credit policy that should lower the average collection period to 28 days. If the new average collection period is attained, what will the firm's accounts receivable balance equal market research is a detailed process by which marketers can improve the decision-making process by using more formal, structured approaches and information. by asking the right questions of the right people, marketers can gain insights into customers' wants and needs and take the necessary actions to grow their business. this holds true for martha at the coffee collective. she is already successful within her local market but she wants to continually improve her offerings by hosting an open mic night for local musicians, storytellers, and activities. she decides to have gabby and marco collect survey data as part of their marketing class assignment to see if her customers would want this new feature. while gabby and marco both use a formalized process to design, collect, and analyze information from potential customers, they find mixed results form their surveys. after looking at the results, martha decides not to offer this new feature at the coffee collective and instead focuses on providing the products, service, and coffee-drinking experience that her customers have come to expect. marketing research is the process of defining a marketing problem and opportunities, and systematically collecting and analyzing information in order to recommend actions. this five-step process includes (1) defining the marketing problem, (2) developing the research plan, (3) collecting relevant information, (4) developing findings, and (5) taking marketing action to increase the effectiveness of marketing activities. click the button to watch the video. then, answer the questions that follow. 30 points and brainly please help!!!! What are the three major parts of the respiratory system?Group of answer choicesThe muscles of respirationThe lungsThe brainThe muscles of exercisingThe veinsThe heartThe airway equired informationskip to questionelements of the offer introduction read the overview below and complete the activities that follow. in this activity, you'll be reviewing a hypothetical situation concerning a contract. you'll use what you've learned in chapter 9 to determine if the case suggests that a valid offer exists. concept review: the first element of a contract is the agreement, which is made up of an offer and an acceptance. formation of the agreement begins when the party initiating the contract, called the offeror, makes an offer to another party, called the offeree. the elements of an offer are (1) serious intent by the offeror to be bound to an agreement, (2) reasonably definite terms, and (3) communication to the offeree. mini-case: read the simulated case below regarding an offer for a contract. then answer the questions regarding the process of determining a valid offer. mark and lindsay have a verbal conversation. in that conversation, mark tells lindsay that he will sell her his used living room couch and loveseat for $125 cash. lindsay has seen the furniture often and knows that the furniture is used, but the fabric has no holes, stains, or large imperfections. mark also indicated that he was not joking, and lindsay had no reason to believe mark was joking about the sale of the furniture. lindsay agrees to accept mark's offer. walk through the three steps of a valid offer under common law for the case above. do the facts of the case suggest that a valid offer exists? why or why not?who can accept the offer?multiple choiceanyone who hears the offer can accept the offer.an offeree an accept the offer.only the offeror can accept the offer. prevquestion 8 of 9 total8 of 9visit question mapnext Put the steps in correct order to prove that if n is a perfect square, then n + 2 is not a perfect square.1).Lets assume m 1.2) If m = 0, then n + 2 = 2, which is not a perfect square. The smallest perfect square greater than n is (m + 1)^2.3) Hence, n + 2 is not a perfect square4) Expand (m + 1)^2 to obtain (m + 1)^2 = m2 + 2m + 1 = n + 2m + 1 > n + 2 + 1 > n + 2.5) .Assume n = m2, for some nonnegative integer m which of the following is a valid explanation of why a star movie actor earns many times more than a star broadway actor? government regulations specify how much each type of actor earns. there is discrimination against broadway actors but not against movie actors. in one evening, many more people can view a movie than can see a broadway play. broadway actors are far less skilled than movie actors. What is the definition of yurt Although statistics may be limiting for individuals in some ways, explain its overall importance in advancing societalissues concerning tolerance and diversity. Donnez lintgral de -x+5/(x^2-4x+4)(x+1) Cuales son las estrategias para ganar un partidos de baloncesto en la NBA? When you hear about cultures that practice cannibalism you reject that idea immediately and say that those people are out of their mind. This is an example of What is the minimum number of kilojoules needed to change 40. 0 grams of water at 100 degree celsius to steam at the same temperature and pressure?