funtion is excel define​

Answers

Answer 1

Explanation:

Excel includes many common functions that can be used to quickly find the sum, average, count, maximum value, and minimum value for a range of cells.


Related Questions

what are the four forms of utility in computing

Answers

Answer:

form, place, time, and possession utility

Explanation:

SOMEONE PLEASE HELP ME WITH THIS ILL GIVE YOU BRAINLY IF YOU GET IT RIGHT PLEASE!!!!!


How can supply and demand for different careers affect job stability and income ? Should you think about supply and domand when considering your future career? Why or why ?

Answers

Answer:

Supply and demand affects the labor market just like any other market. ... On the flip side if demand for a job increases while supply stays stable then job stability gets higher and income could get higher as employers are willing to pay more

Answer:

Supply and demand can affect job stability since if your supply is high whilst your demand is low, you'll make less money from stocks and will be paying for supplies which aren't being used or sold and therefore will be losing money and profits, meaning that the jobs stability will be lowered due to lack of pay, resulting in a cut of workers

Put the steps in order to produce the output shown below. Assume the indenting will be correct in the program.

4.0

1. Line 1

•def divide(numA, numB):

2. Line 2

•print (answer)

3. Line 3

•answer = divide(24,6)

4. Line 4

•return numA / numB

Answers

Answer:

Correct arrangement

•def divide(numA, numB):

•answer = divide(24,6)

•return numA / numB

•print (answer)

Explanation:

The program is written in Python code.

The correct arrangement is as shown;

1. Line 1  

•def divide(numA, numB):

#This line defines a function that calls in 2 numbers in parenthesis as the argument

2. Line 2

•answer = divide(24,6)

#This line assigns the argument with numbers and stores it with a variable called 'answer'

3. Line 3

•return numA / numB

#This line returns the required division

4. Line 4

•print (answer)

#This line prints out the answer to the console. The answer of which is 4

opposite word of reassembling​

Answers

OPPOSITE WORDS OF REASSEMBLING

dispersedisbandseparate
opposite word of reassembling is separate

I need help 40 points and brainless

Answers

Answer:

the answer is 50

Explanation:

hope that helped

Please any ine help me that what is the fullform of html​

Answers

Explanation:

hypertext markup language

One of the labels in Sarah's spreadsheet does not fit inside cell A3. The label is being cut off. In one to two sentences, tell Sarah how she could fix this problem.

Answers

Answer:

You can make the column wider by dragging the A and B to the right.

Explanation:

I need help 40 points and brainless if you answer

Answers

Answer:

The answer is C

Explanation:

What is empowerment technology?

Answers

It the use of technological devices such mobile phones and computer devices to help retain and locate information.

what does the box mean when texting

Answers

texting on imessage?

Answer:

This means that your device's operating system did not recognise part of the message.

Explanation:

What effect does social media have on teens?

Answers

Answer:

manipulation is the answer

Social media can maybe make teens more addicted to their phones. They may start procastinating and forget to do their work. On the positive side, social media helps teens to connect with their friends and family

You work for ScreensRUs, a business that sends repair people to sites to fix damaged car windshields. Your employer provides company mobile phones, but you think it should provide smartphones instead. Write a memo outlining two reasons why the firm should upgrade its devices.

Answers

Answer:

tldr; treat this like a brief essay. some reasons would be "having a smartphone makes your job easier", "smartphones can make the job easier to do on the go".

Explanation:

hi there!

ok, so this should be pretty simple.  first, we should take a look at the issue in the scenario;  you're an employee for a company that relies heavily on technology to get your job done and send other employees to their customer's locations.  because of this, getting poor quality mobile phones would make your job a little bit harder to do.

to put this in a little bit of a better perspective, imagine that you're an employee in a store, and your job is to sweep the floor. however, your boss only gives you a dust pan and bad quality broom.  that'd make you wish that you had some better equipment to get your job done faster, right?

a memo is basically a written message in a business place; in modern days, they're usually emails, but back in the day they were letters and such.  for this assignment, treat this like an essay! however, be sure to be to-the-point.

now to answer the question; we've already covered one reason that you could use in the memo: "having a smartphone would make your job easier". now think about what else having a smartphone would do compared to a mobile company phone.  

here's an example of a memo!

good luck! hope this helped.

the metric unit used for length

Answers

Answer:

kilometer

Centimeter

Meter

Milimeter

Hope it helps

Please mark me as the brainliest

Thank you

Robert and Anne, a married couple filing jointly, have an adjusted gross income of $68,676. They claim two exemptions, and can deduct $3,752 for charitable donations, $3,375 for interest on their mortgage, and $959 from city income tax. If the standard deduction for a married couple filing jointly is $8,350 and exemptions are worth $3,650 apiece, what is their total taxable income?

Answers

Answer:

the answer is B

Explanation:

Just took the test

The total taxable income of Robert and Anne, who file jointly as a married couple, is $53,026.

Data and Calculations:

Adjusted gross income of Robert and Anne = $68,676

Claimable Exemptions:

Charitable donations = $3,752

Mortgage interest = $3,375

City income tax = $959

Standard Exemptions:

Standard deduction for married couple = $8,350

Exemptions = $3,650 per couple

Taxable income:

Adjusted gross income  $68,676

Standard deductions         (8,350)

Exemptions                        (7,300) ($3,650 x 2)

Taxable income =         $53,026

Thus, the total taxable income of Robert and Anne, who file jointly as a married couple, is $53,026.

Learn more about taxable income https://brainly.com/question/10137785

Which PowerPoint feature will you use to apply motion effects to different objects of a slide? A. Slide transition B. Slide design C. Animation movement D. Animation effects

Answers

Answer:

D. animation effects

classify the functions of dhcp and dns protocols​

Answers

Answer:

Dynamic Host Configuration Protocol (DHCP) enables users to dynamically and transparently assign reusable IP addresses to clients. ... Domain Name System (DNS) is the system in the Internet that maps names of objects (usually host names) into IP numbers or other resource record values.

Which mode would you use to take a photograph inside a cave in dim light?
A.
program mode
B.
aperture priority mode
C.
auto mode
D.
night mode
E.
sports mode

Answers

Answer:

I think B or A because when you go in a dark place you can use this

Answer:

D. Night Mode.

Explanation:

I am not 100% sure but it seems like since you are in a cave in dim light it would be like at night with the moon.

Which of the following number is divisible by 3? (340 , 432 , 113)​

Answers

Answer:

432..........................

Define function print_popcorn_time() with parameter bag_ounces. If bag_ounces is less than 3, print "Too small". If greater than 10, print "Too large". Otherwise, compute and print 6 * bag_ounces followed by "seconds". End with a newline. Remember that print() automatically adds a newline.

Answers

Answer:

In Python:

def print_popcorn_time(bag_ounces):

   if bag_ounces < 3:

       print("Too small")

   if bag_ounces > 10:

       print("Too large")

   else:

       print(str(6 * bag_ounces)+" seconds")

       

Explanation:

This defines the function

def print_popcorn_time(bag_ounces):

This checks if bag_ounces < 3

   if bag_ounces < 3:

If yes, it prints too small

       print("Too small")

This checks if bag_ounces > 10

   if bag_ounces > 10:

If yes, it prints too big

       print("Too large")

If otherwise,

   else:

Multiply bag_ounces by 6 and print the outcome

       print(str(6 * bag_ounces)+" seconds")

Answer:

Explanation:

def print_popcorn_time(bag_ounces):

  if bag_ounces < 3:

      print("Too small")

  elif bag_ounces > 10:

# Use of 'if' for this portion, will only yield a test aborted for secondary tests

      print("Too large")

  else:

      print(str(6 * bag_ounces)+" seconds")

user_ounces = int(input())

print_popcorn_time(user_ounces)

Look out for users with this photo.

Answers

Answer:

why whats wrong with it

Explanation:

omg thank you someone just answered my question and they told me to go to the link for the answer but i knew it was a trick lol

What is the first step in finding a solution to a problem? (5 points)
Choose a solution.
Think of options to solve the problem.
Try the solution.
Turn the problem into a question.

Answers

Answer:

Turn the problem into a question.

Explanation:

Chen needs to configure a filter on the current folder and would like to filter by the sender of a message. Which tab in the Filter
dialog box will he need to use to achieve this?
✓ Messages
More Choices
Advanced
SQL


Test answers: 1 is messages. 2 is msg. 3 is use the edit business card dialog box to control the information included. 4 is reviewer. 5 is select multiple calendars. 6 is chart. 7 is no automatic filtering. 8 is inside my organization tab. 9 is manage task.

Answers

Answer:

the correct answer is messages

Answer:

messages

Explanation:

I just did the assignment

n
Which best describes the relationship between hardware and software?
ОООО
Software instructs hardware how to perform.
Software allows users to interact with hardware.
Hardware directs the performance of software.
Hardware enables software to perform correctly.
The answer is CC equals hardware distract supposed formants of software hope this helps

Answers

Ndhddhdhdh
Hdhdhdjdhhfhfhfhfhfjdjfjfj

Answer:

A

Explanation:

Software instructs hardware how to perform.

How do you resolve conflicts in your life??

Answers

Answer:

What problems?

Explanation:

How to code the different parts of HTML (Plz answer)

Answers

If you have a sidebar that has multiple sections, don't nest elements inside of elements like in the example above. Instead, make the sidebar a single and then use (or another appropriate sectioning element) to create the different sections.

What is the ascii code for the letter D

Answers

Answer:

068

Explanation:

Or if you want binary it's 01000100

How do I convince my mom to buy a gaming computer for me? She says we already have 3 other computers/laptops in the house to use but they are all owned by someone else and I want my own.

Answers

Answer: ??

Explanation: explain to her that you don't have your own. keep asking and convince her you're doing good in school, (if u are) and that you listen and you should be responsible to have your own

Which of these terms describes what happens if someone follows the directions on the washing machine three times in a row?
sequential
iteration
selection
block-based

Answers

Answer:

i believe iteration

Explanation:

The term that describes what happens if someone follows the directions on the washing machine three times in a row is iteration. The correct option is b.

What is iteration?

Iteration is the process of repeatedly doing a task in order to produce a (potentially unlimited) succession of results. A single iteration of the process is every time it is repeated, and the result of each iteration serves as the foundation for the following one.

Iterating is the process of carrying out an action, assessing how it went, making improvements, and repeating the activity until you are ready to go on to another one. Programs can iterate or “loop” in one of two ways: loops controlled by a count. Loops are regulated by conditions.

The terms "to repeat or do over again" are equivalent with "iterate" and "reiterate." Since both words have Latin roots, English has not overcorrected in this instance.

Therefore, the correct option is b, iteration.

To learn more about iteration, refer to the link:

https://brainly.com/question/14969794

#SPJ2

Which term defines and describes data and its relationship?

data requirements

project modeling

project infrastructure

data modeling

Answers

Answer:

data modeling

Explanation:

Data model. A formal method of describing data and data relationships. Entity-relationship (ER) modeling. A conceptual database design method that describes relationships between entities.

PLEASE HELP ME! Will report ignorant answers!
Original answers only please.
Why is it important that software be compatible with your operating system? What kind of complications may occur if the two are incompatible?

Answers

Answer:

It is important so your computer can function properly. the two things that might happen if they are not compatible are that it might crash your computer and that your computer might not function properly.

A software must be compatible with the operating system of its host computer

Important of software compatibility with operating system?

Software as used here are application programs designed for a computer.

It is important the software is compatible with the operating system of the computer in order to run without hassles.

Take for instance, a software designed to run on a 64-bit operating system will not run perfectly on a 32-bit operating system

The kind of complications that may occur

As stated above, a software designed to run on a 64-bit operating system will not run perfectly on a 32-bit operating system.

Other complications include:

It can cause the system to hangIt can result as a waste, because of its inability to run properly

Read more about software at:

https://brainly.com/question/1538272

#SPJ2

Other Questions
A company made $785 in a ticket sale they sold 100 tickets how much did the company make per ticket if each ticket cost the same price I need help to do this Assignment Why is cyberbullying inappropriate online behavior? Suppose you decide to use the number of times you see any of the area codes of the places Yanay has been to in 50 spam calls as your test statistic. Question 7. Write a function called simulate_visited_area_codes that generates exactly one simulated value of your test statistic under the null hypothesis. It should take no arguments and simulate 50 area codes under the assumption that the result of each area is sampled from the range 200-999 inclusive with equal probability. Your function should return the number of times you saw any of the area codes of the places Yanay has been to in those 50 spam calls. Hint: You may find the textbook section on the sample_proportions function to be useful. For model_proportions, under the null hypothesis, what's the chance of drawing one of the area codes Yanay has recently been to Which of the following is not a change that occurred to organisms over time in the fossil record?A. Decrease in in the number of species B. Greater complexity C. Increase in size D. More diversity four importance of Engineering SHOULD STUDENTS BE ASSIGNED HOMEWORK? YES OR NO? WHY? EXPLAIN YOURSELF!WRITE A PARAGRAPH THAT LISTS TWO REASONS WHY OR WHY NOT. SUPPORT YOUR REASONS. YOU MUST USE COMMENTARY TO EXPLAINYOUR CLAIM. toy story 2 resea descriptiva HELP ASAP!!!!!!! I NEED HELP ON THIS QUESTION AND I HAVE TO TURN IN MY TEST!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!3. Which of the following is/are NOT a part of overall biodiversity? (you may select multiple answers) -individual diversity-species diversity-ecosystem diversity-genetic diversity In the compound H2O electrons are A.gained B.lost C.transferred or D.shared? Can some please answer this Stevensons Skin Saver cosmetic company went bankrupt. Her head chemist, Jaqua, buried 75 barrels of super toxic glurch on the property before they abandoned it. Which law will help enforce that they clean up their mess? a. Lacy actb. Kyoto Protocolc. SMCRAd. Superfund Act Pharma Company produces various medicines in capsule form. At the beginning of the month of March, it had 5,000 units that were 40% complete. These were assigned costs of $150,000. During the month, it completed 55,000 units and has 20,000 units that are 50% completed. It had production costs during the month of $600,000. Complete all five steps of a production report using the weighted average method. Complete all five steps of a production report using the FIFO method. 4. Explain how energy is transformed in a spring. Write the Cause and effect of SARS-CoV-19 pandemic Help i'll give brainliest! help with 15 just make the answer clear please (PLEASE COMMENT IF YOU CAN"T SEE THE PICTURE DONT ANSWER!) HELP ME PLZZ I NEED HELP WITH THIS Bella can run a mile in 9.54 minutes. Linda can run a mile in 8.22 minutes. How much faster can Linda run than Bella? Justify your reasoning. When is the drafting step in the writing process of creative nonfiction writing?when a writer changes details in his or her essay according to feedbackwhen a writer takes a possible essay idea and develops it into a somewhat complete pieceO when a writer takes notes on his or her surroundings to create initial writing ideaswhen a writer changes a short story to be a nonfiction essay Divide the given polynomial by given monomial.