CAN SOME HELP ME HOW TO PUT THIS FORMULA ON EXCEL:
1. Andre has set a revenue goal of $20,000 for January, February, and April, when the organization has no fundraisers, and a revenue goal of $200,000 for March and May, when the organization does have fundraisers.
In cell B10, enter a formula using the IF and AND functions to indicate whether the revenue goal has been met that month:
Enter the logical test using the AND function to determine if the Fundraisers amount in cell B7 equals 0 and the Total in cell B8 is greater than 20000.
If the logical test is true, display Yes (using "Yes" for the value_if_true argument).
If the logical test is false, insert a nested IF function.
Enter the logical test of the nested IF function using the AND function to determine if the Fundraisers amount in cell B7 is greater than 0 and the Total in cell B8 is greater than 200000.
If the logical test for the nested IF function is true, display Yes (using "Yes" for the value_if_true argument).
If the logical test is false, display No (using "No" for the value_if_false argument).

Answers

Answer 1

FORMULA ON EXCEL

=IF(AND(B7=0,B8>20000),"Yes",IF(AND(B7>0,B8>200000),"Yes","No"))

According to the instruction the IF and AND function must be used to find the revenue goal met in the month.

The AND function is used for comparation between two operators.

The given instruction “Enter the logical test using the AND function to determine if the Fundraisers amount in cell B7 equals 0 and the Total in cell B8 is greater than 20000.”

AND(B7=0,B8>20000)

Instruction: If the logical test is true, display Yes (using “Yes” for the value_if_true argument).

IF(AND(B7=0,B8>20000),"Yes"

Instruction: If the logical test is false, insert a nested IF function.

=IF(AND(B7=0,B8>20000),"Yes",IF())

Instruction: Enter the logical test of the nested IF function using the AND function to determine if the Fundraisers amount in cell B7 is greater than 0 and the Total in cell B8 is greater than 200000.

=IF(AND(B7=0,B8>20000),"Yes",IF(AND(B7>0,B8>200000))

Instruction: If the logical test for the nested IF function is true, display Yes (using “Yes” for the value_if_true argument).

=IF(AND(B7=0,B8>20000),"Yes",IF(AND(B7>0,B8>200000),"Yes")

Instruction: If the logical test is false, display No (using “No” for the value_if_false argument).

=IF(AND(B7=0,B8>20000),"Yes",IF(AND(B7>0,B8>200000),"Yes","No")) used in Excel sheet.

Learn  more about EXCEL here:

https://brainly.com/question/15842743

#SPJ4


Related Questions

Please help. 10 points
Question # 1
File Upload
Submit your newsletter that includes the following:

two or three columns
a title
at least three graphics, but not more than six

Answers

Answer:

God Is Good He Will Always Help You He Is Good And Always Good!!

If God Is For Us Who Can Be Against us?? Romans 8:31

Explanation:

Sorry im late. Hope I helped.

I will be doing the biography report.  

The Biography and Life of Henry Ford.

Column One: Who was Henry Ford?

Henry Ford was the founder of Ford Motor Company and also the mass producer of the automobile. Henry Ford was born in 1863. At the age of 16, he worked as a machinist apprentice. Later, Henry began to work the family farm while still working on creating steam engines. Henry had a big interest in steam engines, which would later contribute to him building his first working automobile.

Column Two: How did Henry Ford contribute to our society?

After marrying in 1888, Ford was hired to work for Edison Illuminating Company. His position was an engineer, and Ford began to accelerate his position in the company quickly. After a while, Ford created his first operating vehicle. This was called the "Quadricycle." Ford wanted to improve on his models, so he founded the Company Ford with others. Ford then began to develop methods of mass-producing automobiles to sell to the public. After success in business, he bought the whole company and owned it all by himself. Ford began to mass-produce automobiles. It is said that " The mass production techniques Henry Ford championed eventually allowed Ford Motor Company to turn out one Model T every 24 seconds." Ford passed away in 1945. He decided to give ownership to his son Edsel Ford before he died, but Edsel sadly died before Henry Ford. The Ford company's ownership was given to Ford's grandson, Henry Ford II.

Three Graphics:

Please help. 10 pointsQuestion # 1File UploadSubmit your newsletter that includes the following:two or
Please help. 10 pointsQuestion # 1File UploadSubmit your newsletter that includes the following:two or
Please help. 10 pointsQuestion # 1File UploadSubmit your newsletter that includes the following:two or

When computing the complexity of an iterative algorithm with an outer loop and an inner loop, we solve _?_

Answers

The complexity is typically expressed using Big O notation,

The complexity of an iterative algorithm with an outer loop and an inner loop is determined by analyzing the nested loop complexity.

This involves identifying how many times the inner loop executes for each iteration of the outer loop. By carefully examining the number of iterations and operations within the loops, we can calculate the algorithm's overall time complexity.

Big O notation is commonly used to express the complexity of an algorithm. It provides an upper bound on the algorithm's time complexity as a function of the input size. By analyzing the growth rate of the algorithm's runtime with respect to the input, Big O notation helps us understand how the algorithm scales and how it performs for larger inputs.

To learn more about Big O notation

brainly.com/question/26807983

Assignment
Write a assembly program that can display the following shapes:

Rectangle
Triangle
Diamond
The program will read an input from the user. The input is terminated with a period. So the program will continue to run until a period is read.

The data the program reads is as follows:

A shape command followed by parameters.

R stands for Rectangle. The parameters are height (rows) and width (columns)

T stands for Triangle. The parameters is base width

D stands for Diamond. The parameters

Your program needs to read the input and based on the input do the following:

Print your name
Then print the name of the shape
Then the shape below it.
Sample input:
R 03 10
T 05
D 11
.
Output:
Loay Alnaji
Rectangle
**********
**********
**********
Triangle
*
***
*****
Diamond
*
***
*****
*******
*********
***********
*********
*******
*****
***
*

Requirements
Your main should only be the driver. It should only read the "shape type", based on that, call the proper function to read the parameters and draw the shape.
Example of your main (just example, pseudocode):

loop:
read shape
if shape is '.' then exit
if shape is 'R'
call Rectangle Function
if shape is 'D'
call Diamond Function
if shape is 'T'
Call Triangle Function
go to loop

Answers

The program above is one that begins with the _begin name, which is the passage point of the program.

What is the program  about?

The program uses framework call int 0x80 to print your title on the screen utilizing the compose framework call. It loads the suitable values into the registers (eax, ebx, ecx, edx) to indicate the framework call number, record descriptor, buffer address (where the title is put away), and length of the title.

It checks in case the shape input may be a period (.), which demonstrates the conclusion of input. In case so, it bounced to the exit name to exit the program.

Learn more about program  from

https://brainly.com/question/23275071

#SPJ1

AssignmentWrite a assembly program that can display the following shapes:RectangleTriangleDiamondThe
AssignmentWrite a assembly program that can display the following shapes:RectangleTriangleDiamondThe
AssignmentWrite a assembly program that can display the following shapes:RectangleTriangleDiamondThe

The index is the ____________ of a piece of data.

An individual piece of data in a list is called an __________.

For Questions 3-5, consider the following code:

stuff = []




stuff.append(1.0)

stuff.append(2.0)

stuff.append(3.0)

stuff.append(4.0)

stuff.append(5.0)




print(stuff)


What data type are the elements in stuff?

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

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

Consider the following code:

price = [1, 2, 3, 4, 5]

This code is an example of a(n) ______________ _____________.

Group of answer choices

number list

int list

price list

initializer list

Answers

Answer:

The index is the position of a piece of data in a list.

An individual piece of data in a list is called an element.

The elements in stuff are float data type.

The output for print(len(stuff)) is 5, which is the number of elements in the stuff list.

The output for print(stuff[0]) is 1.0, which is the first element of the stuff list.

The code price = [1, 2, 3, 4, 5] is an example of a list that contains integer elements. We can call this list an integer list or simply a list.

A language learning app does not provide users with the ability to save their progress manually, although it can be verified that progress is auto-saved. What is the severity of this bug?

Answers

If a  language learning app does not provide users with the ability to save their progress manually, although it can be verified that progress is auto-saved, the severity of this bug will be: Minor.

What is a minor bug?

A minor bug is one that affects the system in some way although it does not totally stop the system from functioning.

In the description above, the learning app does not provide an option for saving progress manually but it can be seen that the progress is automatically saved, this poses no real challenge so, the bug's severity is minor.

Learn more about computer bugs here:

https://brainly.com/question/14371767

#SPJ1

A client has the right to receive ethically conducted research. Discuss this statement with examples.

Answers

A client has the right to receive ethically conducted research. This means that the researcher should adhere to the principles of scientific research, which includes honesty, objectivity, integrity, and respect for human subjects. In addition, the researcher should ensure that the research is conducted in a safe and responsible manner.

What is research?
Research is defined as "creative and methodical activity done to improve the body of knowledge." It entails the objective gathering, organising, and analysis of data in order to improve comprehension of a subject or issue. A research effort could build on prior contributions to the field. Research may duplicate portions of earlier projects or the project as a complete to verify the accuracy of instruments, processes, or experiments.

Documentation, discovery, interpretation, as well as the research and development (R&D) of methods & systems again for advancement of human knowledge are the main goals of basic research (as opposed to applied research). Research methodologies are based on epistemologies, which differ greatly within and between the humanities and sciences.

To learn more about research
https://brainly.com/question/25257437
#SPJ13

What is the most efficient solution to keep personal and work emails separate, even if they are in a single email box

Answers

Separate your emails into different folders. adding filters to your email accounts is a smart idea because they will automatically sort your emails into the correct folder. Using a strategy like this will help you stay organized and make managing many email accounts much easier.

What is email ?

Email, or electronic mail, is a communication technique that sends messages via electronic devices across computer networks. The term "email" can apply to both the method of delivery and the specific messages that are sent and received.

Since Ray Tomlinson, a programmer, invented a mechanism to send messages between computers on the Advanced Research Projects Agency Network in the 1970s, email has existed in some form (ARPANET). With the introduction of email client software (like Outlook) and web browsers, which allow users to send and receive messages via web-based email clients, modern versions of email have been widely accessible to the general public.

To know more about Email, check out:

https://brainly.com/question/28802519

#SPJ1

Which of the following are advantages of automatic updates?

Which of the following are advantages of automatic updates?

Answers

Answer:

a,b,d  

Explanation:

a.they protect against viruses

b.they protect against hackers

d.they keep your computer running at peak performence

Answer:

They protect against viruses

Explanation:

what used to produce protein under the direction of DNA?​

Answers


Genes

A gene is the section of DNA required to produce one protein.

an opening inside the system unit in which you can install additional equipment can be known as

Answers

Answer:

A bay is an open area inside the system unit in which you can install additional equipment.

What type of program can you use to enter your java program?a) compiler.b) editor.c) spreadsheet.d) database.

Answers

Answer:

Editor

Explanation:

A compiler translates languages

A spreadsheet is a document in which data is arranged in columns and rows

A database is a structured set of data held in a computer

An editor allows you to, well, edit code

Hope this helps!

(Please mark Brainliest!)

give one major environmental and
one energy problem kenya faces as far as computer installations are concerned?​

Answers

One considerable predicament that Kenya encounters pertaining to the utilization of computers is managing electronic waste (e-waste).

Why is this a problem?

The mounting number of electronic devices and machines emphasizes upon responsibly discarding outdated or defective hardware in order to avoid environmental degradation.

E-waste harbors hazardous materials such as lead, mercury, and cadmium which can pollute soil and water resources, thereby risking human health and ecosystem sustainability.

Consequently, a significant energy drawback with computer use within Kenya pertains to the insufficiency or instability of electrical power supply.

Read more about computer installations here:

https://brainly.com/question/11430725

#SPJ1

give 2 reasons why 3D printers are not commonly used in a home office other than the cost

Answers

Answer:

Skill/ Material

Explanation:

The skills needed to design a model for a 3D printer to print is rare, and takes alot of practice.

Filling is also needed for the printer, which is an additonal cost besides mantience, and the original fee.

Answer:

The use of 3D printers can be complex, with much prerequisite knowledge being required.  They are time-consuming to maintain.

Explanation:

3D printers are a versatile technology with a multitude of use cases, from designing models and prototypes to creating components used in vehicles. This begs the question, why are they not common in home offices everywhere?

Firstly, while they are incredibly useful, they are pretty complex, with prior knowledge of CAD (computer-aided design) software often required. This complexity can make its use challenging for the average person.

Another reason they are uncommon in home offices is their need for maintenance. 3D printers, like all machinery, require regular maintenance to ensure smooth operation. However, maintenance of 3D printers can be time-consuming, coupled with an overall lack of need within a home office, making them off-putting to buyers.

Write a simple calculator program. Your program should accept as input an expression in the form of: 3 * 2 Use an if / elif ladder style structure to determine what operation needs to be performed on the two numbers. Your program should handle the arithmetic functions Add, Subtract, Multiply, and Divide (Depending on the operator entered). Input: For this assignment you are going to want to take in a string that has the expression separated by a space. Once you have stored the string you will need to split it. This means to get each individual part of the expression. Python has a split function that is part of the string. It will return a list of the pieces that were split. I realize we haven't discussed lists yet so I will give you some code. Suppose you have the expression: str

Answers

Answer: Provided in the explanation section

Explanation:

provided below is the program to carry out this task, i hope it provides clarity.

#include <iostream>

using namespace std;

int main() {

  int n1, n2;

  char ch;

  cout << "Enter an expression" << endl;

  cin >> n1 >> ch >> n2;

  switch(ch) {

      case '+':

          cout << "The sum is " << n1+n2 << endl;

          break;

      case '-':

          cout << "The difference is " << n1-n2 << endl;

          break;

      case '*':

          cout << "The product is " << n1*n2 << endl;

          break;

      case '/':

          cout << "The division is " << n1/n2 << endl;

          break;

      default:

          cout << "Invalid expression" << endl;

  }

  return 0;

cheers  i hope this helped !!

}

Corrine is writing a program to design t-shirts. Which of the following correctly sets an attribute for fabric? (3 points)

self+fabric = fabric
self(fabric):
self = fabric()
self.fabric = fabric

Answers

The correct option to set an attribute for fabric in the program would be: self.fabric = fabric

What is the program

In programming, defining an attribute involves assigning a value to a particular feature or property of an object. Corrine is developing a t-shirt design application and intends to assign a characteristic to the t-shirt material.

The term "self" pertains to the specific object (i. e the t-shirt) which Corrine is currently handling, as indicated in the given statement. The data stored in the variable "fabric" represents the type of material used for the t-shirt.

Learn more about program  from

https://brainly.com/question/26134656

#SPJ1

Which describes the state of "weak" vs. "strong" Artificial Intelligence (Al) in the
marketplace?
O Current Al models can adapt on their own across domains of data, without intervention.
O Al models have surpassed human capabilities to evolve and change.
O The current state of Al offerings would be classified mostly as "weak" Al at this point.
O The marketplace will have "strong" Al solutions ready for delivery within the next year.
O I don't know this yet.
Submit answer

Answers

Answer:

Strong AI has a complex algorithm that helps it act in different situations, while all the actions in weak AIs are pre-programmed by a human. ... They can process and make independent decisions, while weak AI-based machines can only simulate human behaviour.

Explanation:

How does computer hardware and software work together?

Answers

Answer:

Computer software controls computer hardware which in order for a computer to effectively manipulate data and produce useful output I think.

Explanation:

First one who answers gets brainiest

Answers

Answer:

thank for the point anyway

Which of the following is not true about Mac computers? The current version of OS X is called El Capitan. Macs come with a variety of useful programs already installed. Boot Camp is a program that allows you to install and run Windows on a Mac Macs have a reputation for being unsecure, unstable and difficult to use.​

Answers

Mac’s current OS is El Capitan and Macs have a reputation to be unsecure. Both of these are not true.

A simple machine produces 25 joules of output work for every 50 joules of input work. What is the efficiency of this machine?.

Answers

Answer:
The efficiency of the machine is 50%


Explanation:

The efficiency of a machine is defined as the ratio of the output work to the input work, expressed as a percentage. Therefore, we can calculate the efficiency of the given machine using the formula:

Efficiency = (Output Work / Input Work) x 100%

We are given that the machine produces 25 joules of output work for every 50 joules of input work. Therefore, the efficiency of the machine is:

Efficiency = (25 / 50) x 100% = 0.5 x 100% = 50%

So the efficiency of this machine is 50%. This means that only half of the input work is converted into useful output work, while the other half is lost as heat, friction, or other forms of energy loss.

Critical Thinking
6-1
Devising a DC Strategy
Problem:

This project is suitable for group or individual work. You're the administrator of a network of 500 users and three Windows Server 2016 DCs. All users and DCs are in a single building. Your company is adding three satellite locations that will be connected to the main site via a WAN link. Each satellite location will house between 30 and 50 users. One location has a dedicated server room where you can house a server and ensure physical security. The other two locations don't have a dedicated room for network equipment. The WAN links are of moderate to low bandwidth. Design an Active Directory structure taking into account global catalog servers, FSMO roles, sites, and domain controllers. What features of DCs and Active Directory discussed in this chapter might you use in your design?

Answers

The Active Directory (AD) database and services link users to the network resources they require to complete their tasks.The database (or directory) holds crucial details about your environment, such as how many computers and users there are, as well as who has access to them.

What is the features of DC refer ?

By verifying user identity through login credentials and blocking illegal access to those resources, domain controllers limit access to domain resources.Requests for access to domain resources are subject to security policies, which domain controllers apply. To create and administer sites, as well as to manage how the directory is replicated both within and between sites, utilize the Active Directory Sites and Services console.You can define connections between sites and how they should be used for replication using this tool. All of the information is safeguarded and kept organized by the domain controller.The domain controller (DC) is the container that Active Directory uses to store the kingdom's keys (AD). Administrators and users can easily locate and use the information that Active Directory holds about network objects.A structured data store serves as the foundation for the logical, hierarchical organization of directory data in Active Directory. A networking appliance designed specifically for enhancing the performance, security, and resilience of applications provided over the internet is known as an application delivery controller (ADC). Distributed Control Systems (DCS.   Automatic regulation.    Program (logic) control   Remote control (start, shutdown, change of set points),  Alarms and notifications management,Collection and processing of process and equipment data. Graphic presentation of process and equipment condition data.Applications like production scheduling, preventative maintenance scheduling, and information interchange are made possible by the DCS.The global dispersion of your plant's subsystems is made easier by a DCS.A DCS may effectively monitor or enhance operational qualities like: Efficiency. Industrial processes are controlled by DCS to raise their dependability, cost-effectiveness, and safety.Agriculture is one process where DCS are frequently employed.chemical factories.refineries and petrochemical (oil) industries. The DCS is interfaced with the corporate network in many contemporary systems to provide business operations with a perspective of production.View Next:DCS Wiring Plans.Test on instrumentation.Secure Control System.dustrial communication, automation, and remote function. As the name implies, the DCS is a system of sensors, controllers, and associated computers that are distributed throughout a plant. Each of these elements serves a unique purpose such as data acquisition, process control, as well as data storage and graphical display.

       To learn more about Active Directory refer

      https://brainly.com/question/24215126

       #SPJ1

       

Draw the flow chart to find roots of Quadratic equation ax+bx+c=0

Answers

Using the knowledge in computational language in C++ it is possible to write a code that draw the flow chart to find roots of Quadratic equation.

Writting the code in C++:

#include <math.h>

#include <stdio.h>

int main() {

double a, b, c, discriminant, root1, root2, realPart, imagPart;

printf("Enter coefficients a, b and c: ");

scanf("%lf %lf %lf", &a, &b, &c);

discriminant = b * b - 4 * a * c;

// condition for real and different roots

if (discriminant > 0) {

root1 = (-b + sqrt(discriminant)) / (2 * a);

root2 = (-b - sqrt(discriminant)) / (2 * a);

printf("root1 = %.2lf and root2 = %.2lf", root1, root2);

}

// condition for real and equal roots

else if (discriminant == 0) {

root1 = root2 = -b / (2 * a);

printf("root1 = root2 = %.2lf;", root1);

}

// if roots are not real

else {

realPart = -b / (2 * a);

imagPart = sqrt(-discriminant) / (2 * a);

printf("root1 = %.2lf+%.2lfi and root2 = %.2f-%.2fi", realPart, imagPart, realPart, imagPart);

}

return 0;

}

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

#SPJ1

Draw the flow chart to find roots of Quadratic equation ax+bx+c=0

Match the cell reference to its definition,
absolute reference
The cell has combination of two other types
of cell references.
relative reference
The cell remains constant when copied or
moved.
mixed reference
The cell changes based on the position of
rows and columns

Match the cell reference to its definition,absolute referenceThe cell has combination of two other typesof

Answers

Answer:

Absolute reference- the cell remains constant when copied or moved

Relative reference- the cell changes based on the position of rows and columns

Mixed references- the cell has combination of two other types of cell references

Explanation:

1. What are the first tasks the Team Leader (TL) must perform after arriving at the staging area?
O A. Assign volunteers to specific positions and prioritize response activities.
OB. Gather and document information about the incident.
O C. Take the team to the most pressing need.
O D. Communicate with emergency responders to let them know the CERT is in place.

Answers

A. Assign volunteers to specific positions and prioritize response activities.

Why would you use a computer's secondary memory?
O A. To look at files created on your home computer on a public
computer
B. To run word processing software on your computer
O C. To save a slide show presentation on your computer
D. To start up your computer and perform its basic tasks

Answers

Answer:

I think B

Explanation:

Secondary storage is needed to keep programs and data long term. Secondary storage is non-volatile , long-term storage. Without secondary storage all programs and data would be lost the moment the computer is switched off.

A computer's secondary memory would be used to look at the files created on the home screen of the computer.

Option A is the correct answer.

A computer is an electronic device that is used to do various kinds of operations automatically.

Now, Secondary memory can be utilized to store the data or information which can be instantly recovered.

It is also known as backup memory. USB drives, hard disk drives, optical drives, etc. are some examples of secondary memory.

Therefore, the task of locating the files in the computer is to be done by using the computer's secondary memory. So option A is true.

Learn more about the secondary memory in the related link:

brainly.com/question/24901228

#SPJ6

Give 2 bennifits of expert system

Answers

Answer:

Provide answers for decisions, processes and tasks that are repetitive.

Hold huge amounts of information.

Minimize employee training costs.

Centralize the decision making process.

Make things more efficient by reducing the time needed to solve problems.

here are a few

hope it helps : )

Mariaha Alvarez: Attempt 1
Question 4 (7 points)
A(n) ______
is a unique string of numbers separated by periods that identifies
each computer using the Internet Protocol to communicate over a network.
Transmission Control Protocol
IP address
File Transer Protocol
HyperText Transfer Protocol

Answers

An IP address is a unique string of numbers separated by periods that identifies each computer using the Internet Protocol to communicate over a network. The correct option is 2.

What is IP address?

An IP address is a unique number assigned to each device connected to a network that communicates using the Internet Protocol. Each IP address identifies the device's host network as well as its location on the host network.

An IP address is divided into two parts: the network ID (the first three numbers of the address) and the host ID (the fourth number in the address).

On your home network, for example, 192.168.1.1 - 192.168. 1 is the network ID, and the final number is the host ID.

Thus, the correct option is 2.

For more details regarding IP address, visit:

https://brainly.com/question/16011753

#SPJ1

Your question seems incomplete, the probable complete question is:

A(n) ______ is a unique string of numbers separated by periods that identifies each computer using the Internet Protocol to communicate over a network.

Transmission Control ProtocolIP addressFile Transer ProtocolHyperText Transfer Protocol

Given class Triangle (in file Triangle.java), complete main() to read and set the base and height of triangle1 and of triangle2, determine which triangle's area is larger, and output that triangle's info, making use of Triangle's relevant methods. Ex: If the input is: 3.0 4.0 4.0 5.0 where 3.0 is triangle1's base, 4.0 is triangle1's height, 4.0 is triangle2's base, and 5.0 is triangle2's height, the output is: Triangle with larger area: Base: 4.00 Height: 5.00 Area: 10.00

Answers

Answer:

The Triangle.java file is not provided; However, the program is as follows;

Comments are used for explanatory purpose

Also see attachment for Triangle.java program file

import java.util.*;

public class triangle

{

public static void main(String [] args)

{

 Scanner input = new Scanner(System.in);

 //Declare variables

 double base1, height1, base2, height2;

 //Prompt user for inputs

 System.out.println("Provide values for the base and height of the two triangles");

 System.out.print("Base of Triangle 1: ");

 base1 = input.nextDouble();

 System.out.print("Height of Triangle 1: ");

 height1 = input.nextDouble();

 System.out.print("Base of Triangle 2: ");

 base2 = input.nextDouble();

 System.out.print("Height of Triangle 2: ");

 height2 = input.nextDouble();

 //Compare and Print Results

 if(0.5 *base1 * height1 > 0.5 * base2 * height2)

 {

  System.out.print("Triangle with larger area: Base: "+base1+" Height: "+height1+" Area: "+(0.5 * base1 * height1));

 }

 else

 {

  System.out.print("Triangle with larger area: Base: "+base2+" Height: "+height2+" Area: "+(0.5 * base2 * height2));

 }

}

}

In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.

Answers

Answer: Excel Average functions

Explanation: it gets the work done.

Answer:

excel average

Explanation:

Write an algorithm to find the average of three numbers: 10, 20, 30

Answers

Language: JavaScript

Answer:

let num = [10,20,30];

average(num);  

function average(num) {

 let sum = 0;

 for(let i in num) {

   sum += num[i];

 }  

 return console.log(sum/num.length);

}

Other Questions
Suppose that Congress is considering an investment tax credit, which subsidizes domestic investment.a. How does this policy affect national saving, domestic investment, net capital outflow, the interest rate, the exchange rate, and the trade balance? when valuing items in inventory for financial reporting purposes, generally accepted accounting principles (gaap) requires firms to value the cost of goods sold by assuming that the items that have been in inventory the longest are the ones that are sold first. jit brings about competitive advantage by faster response to the customer regardless of cost. group of answer choices true false this is an example of romantic symphonic writing. it is a multi movement work, in which each movement follows a chapter in a story. what do we call this genre of composition? a promisee has the right to expect or demand that something will or will not happen in the future. t or f a human body is home to a large number of bacteria and bacteriophages. why bacteriophages are even there? products such as washing machines usually use . products such as washing machines usually use . limited decision-making extensive decision-making compensatory decision making routine response behavior what is the federal reserve system and how did the system and federal reserve notes help to strengthen the us economy Which domestic problem faced presidents george washington, john adams, and thomas jefferson? At one university, the mean distance commuted to campus by students is 16.0 miles, with a standard deviation of 4.1 miles Suppose that the commune distances are normally distributed. Complete the following statements. (a) Approximately 68% of the students have commute distances between miles and miles of the students have commute distances between 7.8 (b) Approximately 2 miles and 24.2 miles. X 5 ? Polymorphism is when ____ in a class hierarchy perform differently, depending upon which object performs the call. the early spread of the printing press in the arabic world might have been inhibited by paul ekman is the leading researcher in facial expressions. he has traveled to many different cultures to determine whether facial expressions are universal. this is an example of what type of research? a sequence may be defined as group of answer choices a resting place at the end of a phrase. a part of a melody. the emotional focal point of a melody. the repetition of a melodic pattern at a higher or lower pitch. there is strong empirical support indicating that learning two languages interferes with effective cognitive development. the use of either kanban or mrp does not preclude the use of the other. how are mrp and kanban used together? kanban is used for planning and mrp is used as the execution system kanban is used to signal the schedule and mrp is used to order materials mrp drives the materials replenishment and kanban drives the schedule mrp is used for planning and kanban is used as the execution system mrp used to drive suppliers and kanban used to drive customers One label on a package of bolt ay that each bolt ha a diameter of 0. 45 inch. To be in the package, the percent error of the diameter mut be le than 3%. A tet on the production line how a bolt with a diameter of 0. 46 inch. Should thi bolt go into the package? a complex molecule containing the genetic information that makes up the chromosomes. You intall 538 feet of fencing along the perimeter of a rectangular yard. The width of the yard i 127 feet. What i the length of the yard? select the correct answer. read the sentence from the passage. rather than allowing developers to tear down old buildings simply to put up new ones, local governments could enact ordinances to preserve their area's architecture. how does this sentence develop the claim in the passage? a. it summarizes the writer's attitude toward government involvement in architecture. b. it begins to introduce solutions to the problems the writer raises. c. it begins to describe the problems the writer wants to highlight. d. it concludes the writer's discussion of modern architecture.