This is an example of what type of formula?

=(D1-D17)

Question 3 options:

ADDITION


SUBTRACTION


RANGE


AVERAGE

Answers

Answer 1

The type of formula that is represented by the given example =(D1+D17) in excel is known as; The SUM Formula function

What are functions in excel?

There are different types of formula functions in excel such as;

SUM

COUNT

COUNTA

IF

TRIM

MAX & MIN

Now, in this question, the formula we are given is =(D1+D17) and the example it represents is the SUM formula function.


Related Questions

If you aren’t familiar with the idea of a leap year, read “Why Is There a Leap Day?” before continuing with the lab.

Your friend is writing a program that will allow the user to input a year and then print “LEAP!” if that year is a leap year or print “not a leap year” if it is not. However, the program isn’t working properly, and your friend asked you for help in debugging.

Before you take a look at the program, you should know these rules for leap years:

A year is a leap year if it can be divided by 400 without a remainder.
A year is a leap year if it can be divided by 4 without a remainder, unless it can also be divided by 100 without a remainder; if that is the case, it is not a leap year.
All other years are not leap years.
Here is your friend’s code:

year=int(input()
if year%400=0:
print("LEAP!")
else:
print(not a leap year")
elseif year%4==0 and year%100!=0
print(“not a leap year")
Note: You may not have seen the % symbol used this way before. It calculates the remainder of the number to the left of it when it is divided by the number to the right of it. So, 10%3 is 1, because when you divide 10 by 3, the remainder is 1.

Answers

The correct debugged code is attached below

What is a leap year

A leap year is a year with 366 days and this year occurs once every 4 years. The debugged code line of code of the program written, is as attached below. because the line of code in the question lacks some functions and symbols

Hence we can conclude that the correct debugged code is attached below.

Learn more about Python coding : https://brainly.com/question/16397886

#SPJ1

A section with information that prints at the bottom of every page of a report is called a page [ ] section.

Answers

Answer:

Foot pager section

Explanation:

Please give brainliest please and good luck :)

Select all the correct answers.
Hans is works for a software company that is developing a banking service that employs online transaction processing. What are two advantages
of using this technology?
•It is simple to implement due to redundancy.
•It allows customers to access the service from any location.
•It experiences minimal losses during downtime.
•It provides a secure environment for transactions.
•It processes a transaction even if part of the transaction fails.

Answers

Banking services are monetary transaction that includes the deposit and withdrawal of money. The online transaction process allows one to access services in any place and secure transaction environment.

What is an online transaction?

Online transactions are the transfer of money on the cloud platform using internet services. The financial transactions are done on the web banking platform that includes money transfers, bill payments, shopping, etc.

Online transactions do not require physical presence and can be done at any place irrespective of the location the money gets transferred to the person. Also, it provides a secure environment to transact any amount.

Therefore, a secure environment and access to services at any place are the two advantages of online transactions.

Learn more about online transactions here:

https://brainly.com/question/24192124

#SPJ1

Answer:

a

Explanation:

what the first guy said

A member has been asked to co-sign checks with a client employee while the company president is on vacation. Which statement about the application of the AICPA independence rules to this situation is correct

Answers

The statement about the application of the AICPA independence rules that is used in this situation is Because check-signing is a management function, independence is impaired.

What is AICPA independence rules?

The independence state that firm's partners and professional employees, have to be independent in line with the “Independence Rule” as well as others.

Note that the  statement about the application of the AICPA independence rules that is used in this situation is Because check-signing is a management function, independence is impaired.

Learn more about AICPA from

https://brainly.com/question/8026742

#SPJ1

Select the three careers in the technical aspect of digital media.
A engineering
B Advertising
C coding
D server maintenance
E journalism

Answers

Engineering, coding, server maintenance are three careers in the technical aspect of digital media. Through numeric encoding and decoding of data, video, audio, software, or other content is created, modified, saved, or accessed in digital form.

What is digital media?

Digital media is a mix of technology and content, and creating digital media products necessitates a multi-skilled team.

Digital media dissemination will soon overtake conventional newspaper, magazine, and book sales. Digital photographs, Digital books, Websites and Blogs,  are some example of Social Media.

Thus, A, C and D are correct.

For more details about digital media, click here

https://brainly.com/question/17858199

#SPJ1

Answer:

engineering, coding, server maintenance

what is a fandango confirmation number for? Like do i need to confirm something? Right after my pruchase i got an email saying "Fandango Purchase Confirmation" what should I do?

Answers

Answer:

Confirmation numbers are given out so that if there is ever a problem with your purchase, they can pull up the transaction on their end. It's simply an identifier for the transaction. If they ever need to validate that it is truly your purchase, they will ask for the confirmation number. You don't need to do anything, just pull up the ticket when you get to the theatre and let them scan it off your phone. You should be able to add it to your Apple Wallet if you use that (makes it easy).

When researching Information about technology for use in a project, it is NOT important to consider the date that the information was
published.

OA True
OB. False

Answers

Answer:

B. False

Explanation:

Hope this helps!

1- Identify the face expressions is considered....

A) Classification problem
B) Clustering Problem
C) Regression Problem

Answers

Answer:

C) Regression Problem

Hope this helped you!

Who is responsible for managing a website? Check all of the boxes that apply.
website supervisor
website host
web designer
webmaster

Answers

Answer:

website host web designer webmaster

Explanation:

Q:

Who is responsible for managing a website? Check all of the boxes that apply.

A:

website host web designer webmaster

The people who are responsible for managing a website may include the website host, web designer, and webmaster. Thus, the correct options for this question are B, C, and D.

What is a website?

A website may be defined as a collection of World Wide Web pages that usually contain links to each other and are made available online by an individual, company, or organization. It includes a collection of files and related resources accessible through the World Wide Web and organized under a particular domain name.

According to the context of this question, except for the website supervisor, all are responsible for managing a website. This is because it usually supervises and regulates websites that are managed by other people like website hosts, web designers, and webmasters.

Therefore, the people who are responsible for managing a website may include the website host, web designer, and webmaster. Thus, the correct options for this question are B, C, and D.

To learn more about Websites, refer to the link:

https://brainly.com/question/28431103

#SPJ2

(Python coding)4.3 Code Practice: Question 2
instructions:
Write a program that uses a while loop to calculate and print the multiples of 3 from 3 to 21. Your program should print each number on a separate line.

Expected Output:
3
6
9
12
15
18
21

Answers

Answer:

i = 3

while i <= 21:

   print(i)

   i+=3

Explanation:

First, we will declare i as 3 because otherwise Python will yell at you and say there is no variable with i, we set it to 3 because we will print then increment in the while loop instead of increment then print

Next the while loop, it will go until i is less than or equal to 21 to print from 3 to 21

Then we will print i as an output. The print command will print each number on a separate line

After that we will increment i by 3 to find the next multiple of 3

This solution will print the following:

3

6

9

12

15

18

21

What threat do insiders with authorized access to information?

Answers

Answer:

An insider threat uses authorized access, wittingly or unwittingly, to harm national security through unauthorized disclosure, data modification, espionage

Explanation:

Create a function that takes an argument. Give the function parameter a unique name. Show what happens when you try to use that parameter name outside the function. Explain the results

Answers

Create a function that takes an argument. Give the function parameter a unique name. Show what happens when you try to use that parameter name outside the fu…

✓ def func(a):     print(a) a= 8 func(a) #Using parameter outside the function works well without producing any error.

During prereading, it is not important to pay attention to visual aids. please select the best answer from the choices provided t f

Answers

Answer:

its false

Explanation:

Answer:

False is correct

Explanation:

Which programming paradigm focuses on abstraction to the level of math and the elimination of side-effects and state based programming

Answers

Answer:

The functional programming paradigms has its roots in mathematics and it is language independent.

Explanation:

The key principle of this paradigms is the execution of series of mathematical functions. The central model for the abstraction is the function which are meant for some specific computation and not the data structure.

Which version of HTML provides the lowest common denominator of HTML tags

Answers

Answer:

HTML 1.0.

Explanation:

The basic version of HTML has support for basic elements like text

The version of HTML provides the lowest common denominator of HTML tags is HTML 1.0. The correct option is C.

What is HTML?

Not being a programming language, HTML. A markup language is used. In fact, HyperText Markup Language is the name of the technology.

The coding that organizes a web page's content is called HTML (HyperText Markup Language). Content may be organized using paragraphs, a list of bulleted points, graphics, and data tables, for instance.

The first version of HTML was written by Tim Berners-Lee in 1993. Since then, there have been many different versions of HTML.

Therefore, the correct option is C, HTML 1.0.

To learn more about HTML, refer to the link:

https://brainly.com/question/24065854

#SPJ2

The question is incomplete. Your most probably complete question is given below:

HTML 2

HTML 4.01

HTML 1.0

HTML 3.2

While browsing the internet, you notice that the browser displays ads linked to recent keyword searches you performed. which attack type is this an ex

Answers

Answer:

Adware

Explanation:

Question 1 of 1
What are some of the things your employer should do to prevent worker falls and
accidents using portable ladders at the workplace?

Answers

Answer:

Ladders are not moved, shifted, or extended while a worker is on them.

Explanation:

It's the most logical answer out of the others.

What year did apple computer introduce the first ipod?.

Answers

Apple first released the first ipod in 2001

You are responsible for creating a database with information about each state in the United States as well as three cities in each state. You will include information on population, primary industry, and area in square miles. How should you set up the database? Use one large table containing all information. Use several interrelated tables. Use one table for each city and each state.

Answers

Answer:gps trends are like the images that are being displayed on the map.

Explanation:

Which of the following BEST describes a permissive software license?

A. Anyone can use and modify the software freely. There are no restrictions.

B. Anyone can use the software, but there are restrictions on how it can be modified.

C. Anyone can use and modify the software, but any new versions must have the same license as the original.

D. Users must pay for the software and do not have the right to modify It or redistribute it.

Answers

Answer:

B

Explanation:

A permissive software license is a free-software license which carries a minimal restrictions on how the software can be used, modified, and redistributed, usually including a warranty disclaimer.

I hope this helps.

Please rate me brainliest.

What tool would you use if you want to collect information as it is being transmitted on the network and analyze the contents for the purpose of solving network problems

Answers

Answer:

packet sniffer

Explanation:

Q:

What tool would you use if you want to collect information as it is being transmitted on the n…

a. content filter

b. vulnerability scanner...

A:

packet sniffer

From the ITAdmin workstation, use the tracert command to identify the devices in the path between ITAdmin and a remote computer on the internet that has an IP address of 206.8.28.127. How many routers are in the path between ITAdmin and the remote computer

Answers

Answer:

This problem has been solved! From the IT Administrator workstation (named ITAdmin), use the tracert command to identify the devices in the path between itself and a remote computer

Explanation:

This problem has been solved! From the IT Administrator workstation (named ITAdmin), use the tracert command to identify the devices in the path between itself and a remote computer

An IP address is an application programming interface connected to a computer network. There are six routers in the path between IT admin and remote computer.

What is a router?

A router is a device that brings the internet service to your linked devices. It is used to forward the data packets on the network channel and also, maintain the traffic of the data on the server.

The default gateway is the IP of the local router that is not routed somewhere else but can be used to manage the router. The default gateway serves as the forwarding host.

Therefore, six routers are placed between the IT admin and the remote computer.

Learn more about IP address here:

https://brainly.com/question/20372171

#SPJ1

Why were different data types developed? Discuss the commonly used data types in programming languages.

Answers

Answer:

Different types of data are represented in different ways inside a computer and need varying amounts of memory to store them. Commonly used data types integer, real, character or string, and Boolean.

Explanation:

What should a pie chart represent?

data that steadily increases
data that adds up to 100%
a set of unrelated data
a list of items that frequently changes

Answers

Answer:

Data that adds up to 100%

Explanation:

Dr. Bloom is writing a test for a history class and wants to ask a question that will have a Boolean value for the answer. Which of these should Dr. Bloom use?

Answers

Answer:?The answer is c: multiple  choice questions.

Explanation:

Dr. Bloom is writing a test for a history class and wants to ask a question that will have a Boolean value for the answer. Which of these should Dr. Bloom use.

I fill like he should use this if he had a test for history class because it really makes sent and that what a lot of teacher when its time for a test. When its a test you weren't supposed to use short answer you were supposed to use big answers.

state how to transfee information from website to el processing document in computers and technology.​

Answers

Answer:

This is typically done either by downloading or by copying and pasting.

Explanation:

What is the difference between HTML and XML?

HTML and XML are two common markup languages. HTML is primarily used for
. XML is primarily used for

Answers

Explanation:

HTML displays data and describe the structure of a webpage while XML stores and transfers data.

A programmable machine can:

Answers

Answer:

Either be an embedded system, or a general purpose system.

The extends keyword applies to: [Choose all that apply - there may be more than one correct answer] Group of answer choices a member variable a method of the class an expression a class inheriting from another class the overridden toString method

Answers

The extends keyword extends a class (indicates that a class is inherited from another class). In Java, it is possible to inherit attributes and methods from one class to another.

The __str__ method of the Bank class (in bank. Py) returns a string containing the accounts in random order. Design and implement a change that causes the accounts to be placed in the string in ascending order of name. Implement the __str__ method of the bank class so that it sorts the account values before printing them to the console. In order to sort the account values you will need to define the __eq__ and __lt__ methods in the SavingsAccount class (in savingsaccount. Py). The __eq__ method should return True if the account names are equal during a comparison, False otherwise. The __it__ method should return True if the name of one account is less than the name of another, False otherwise

Answers

class Bank(object):

   def __str__(self):

       """Return the string rep of the entire bank."""

       #get a sorted copy of the list

       #using default SavingAccount comparison            

       pTemp =sorted(self._accounts)

       return '\n'.join(map(str, pTemp))

Other Questions
What does a sample space look like?I will mark brainliest, but I can only do that if 2 people answer. 5 pointsThanks! :) Hey can someone please help me with these questions. Im having a hard time with them. From the set of the first ten natural numbers,if you pick a number at a time what is the probability of the number you pick to be:an even number Please help me on this! NEED HELP!! Now that you have read the two excerpts about Dr. Carson, complete the compare and contrast graphic organizer below using information from these two texts. You will compare and contrast the following: focus amount of detail use of language tone messageBiography:Autobiography:Differences:Similarities:FOR LANGUAGE ARTS A transmembrane protein has 1000 amino acids. The fifth amino acid is found on theexternal surface of the cell membrane. It interacts with the aqueous environment outside thecell. Amino acids 25 and 205 are covalently bonded to each other and are required to givethe protein its three-dimensional shape. Amino acid 554 is found on the outer surface of theprotein, but it is deep in the interior of the membrane. Amino acid 979 is found on theexternal surface of the protein, where it forms a weak ionic bond with a chloride ion. Canyou identify each of the numbered amino acids by structural group and name? Please notethat there may be more than one specific amino acid possible in some cases !Why wasRome able torise soSuccessfully? How can math be used/applied to architectural engineering? Rule 1: Add 6 starting from 0. Rule 2: Add 3 starting from 0. Complete the first 5 terms using the rules. How are the corresponding terms related? Each term in the second sequence is double the corresponding term in the first sequence. Each term in the second sequence is half the corresponding term in the first sequence. Each term in the first sequence is four times the corresponding term in the second sequence. Each term in the first sequence is half the corresponding term in the second sequence. During the Restoration Period (1660-1798)Daniel Defoe began to write fiction worksspecifically centered around political ideas.With this work, he began which of the followingliterary forms?A. The NovelB. The Fairy TaleC. The Epic Poem Bruce is going to call one person from his contacts at random. He has 252525 total contacts. 202020 of those contacts are from his neighborhood.What is \text{P(call a person not from his neighborhood})P(call a person not from his neighborhood)start text, P, left parenthesis, c, a, l, l, space, a, space, p, e, r, s, o, n, space, n, o, t, space, f, r, o, m, space, h, i, s, space, n, e, i, g, h, b, o, r, h, o, o, d, end text, right parenthesis?If necessary, round your answer to 222 decimal places. What phenomenon got affected by sub rise in the second stanza write an essay on why we should always do our homework The fluidity of the plasma membrane is primarily provided by the ______. Whats the answer???? What type of rock makes up the layers found in the grand canyon?. ncementsmentssionssWhich of the following people would NOT be a citizen of the United States?O Paul, who was born in England, but whose parents were both U.S. citizensJohn, who was born in North Carolina after his parents immigrated to the U.S. from EnglandRingo, who was born and raised in England and whose parents were both citizens of EnglandGeorge, who immigrated to the U.S. from England and was naturalized in the U.S. South Asia is a ___________ which is a smaller landmass attached to a larger one but has unique features that separate it from the largest landmass.The region is located between Pakistan and India that has been the source of much of the conflict between them is called_____________The_______ river is considered sacred to Hindus but is also one of the most polluted rivers in the worldThe tallest mountain in the world is named_______ and is located in South AsiaIndia is heavily influenced by the _________ which divides the country into social classes(You don't have to do all of them, just do the ones u know) HELP ME!!!! 50 POINTS!!!!! Question 2 of 10Why does Friar Lawrence have such a strong reaction to Romeo's news aboutbeing in love with Juliet?O A. He knows Romeo is too young to get married.B. He thought Romeo was in love with Rosaline.C. He thought Romeo did not want to get married.O D. He believes Romeo is lying.