9
Select the correct answer.
A copy center uses a spreadsheet (shown below) to track the number of pages it prints per day. These are the entries from last week. The blank cells stand for days on which no print orders came.

What formula can you use to find the total number of days on which pages were NOT printed?

A.
=COUNT(B3:B7)
B.
=COUNT(B2:B8)
C.
=COUNT(B2,B8)
D.
=7-COUNT(B2:B8)
E.
=8-COUNT(B2:B8)

Answers

Answer 1

The correct formula to find the total number of days on which pages were NOT printed is D. = 7 - COUNT(B2:B8)

Why is this the correct formula ?

This is because there are 7 days in the week, so we need to subtract the number of days on which pages were printed (which is the count of the non-blank cells in the range B2:B8) from 7 to find the number of days on which pages were not printed.

For example, in the given spreadsheet, there were 4 days on which pages were printed (cells B3, B4, B5, and B7 are not blank). Therefore, the total number of days on which pages were NOT printed is 7-4=3.

Find out more on correct formulas at https://brainly.com/question/7160363

#SPJ1


Related Questions

Drag the tiles to the correct boxes to complete the pairs.
Match each type of table relationship to its explanation.

Answers

Answer: 1. one to many 2. many to many 3. one to one

Explanation: the third one says not many in any place of the sentence the second says many in both places of the sentence.

Missing _________________ affects the restore process and makes you unable to restore all the remaining backup file. Please consider a weekly full backup, a daily differential backup and hourly log backup.

Answers

"Missing any of the backup files affects the restore process and makes you unable to restore all the remaining backup files. Please consider a weekly full backup, a daily differential backup, and hourly log backup."

What is the backup?

The statement is referring to a backup and restore process in the context of data backup and recovery. In this process, backups are created periodically to protect data from loss or damage, and these backups are used to restore the data in case of any data loss event, such as hardware failure, accidental deletion, or data corruption.

The statement highlights the importance of having all the necessary backup files in the restore process. If any of the backup files are missing, it can have a significant impact on the ability to fully restore the data. For example, if a full backup is missing, it may not be possible to restore all the data since the full backup contains the baseline copy of all the data.

Read more about backup  here:

https://brainly.com/question/17355457

#SPJ1

Technician A says the ecm closes the intake air control valve at low speeds .
Technician B says the ACIS adjusts intake manifold length to maximize emissions

Answers

The first technician is the one that is not correct

What would happen with the air control valve

Technician A's statement is incorrect. The ECM (engine control module) does not control the intake air control valve. Instead, it controls the throttle body to regulate the amount of air entering the engine. Technician B's statement is also incorrect. The ACIS (acoustic control induction system) adjusts the length of the intake manifold to optimize power and torque, not to maximize emissions.

Read more on air control valve here:https://brainly.com/question/30106449

#SPJ1

What was Martin’s problem that was presented to the dragon?

Answers

"Martin and the Dragon" is a children's story by author and illustrator, Stephen W. Huneck.

What happened in the story?

In the story, Martin's problem was that he was very sad and unhappy. He lived in a small village and had no friends or family to spend time with. One day, he decided to go for a walk in the forest where he came across a dragon who asked him what was troubling him. Martin told the dragon about his loneliness and how unhappy he was.

The dragon listened to Martin and offered to help him by becoming his friend. Martin was surprised that a dragon wanted to be his friend, but he agreed to give it a try. The dragon and Martin spent many days together, playing and exploring the forest. Martin's loneliness disappeared, and he became very happy.

In the end, Martin realized that sometimes help comes from unexpected places, and that true friends can come in all shapes and sizes.

Read more about narrations here:

https://brainly.com/question/1934766

#SPJ1

Assign numMatches with the number of elements in userValues that equal matchValue. userValues has NUM_VALS elements. Ex: If userValues is {2, 1, 2, 2} and matchValue is 2, then numMatches should be 3.

Your code will be tested with the following values:
matchValue: 2, userValues: {2, 1, 2, 2} (as in the example program above)
matchValue: 0, userValues: {0, 0, 0, 0}
matchValue: 10, userValues: {20, 50, 70, 100}

Answers

This code checks to see if each userValues element matches matchValue by iterating through each one. If that's the case, numMatches is raised by 1.

A property or an array?

The user must have access to a control that allows multiple value selection in order to change the values in an array property. The user-selected values are written to array elements when the form is submitted Values can be entered into an array property using a multiple-selection list box or a collection of checkboxes on a form. Controls are items that show data, make it easier to enter or update data, carry out actions, or allow users to make choices. Controls generally make the form simpler to use.

if (userValues[i] == matchValue) numMatches++; numMatches = 0;  (int i = 0; i NUM_VALS; i++);

To know more about code  visit:-

https://brainly.com/question/17293834

#SPJ1

4.16 LAB: Count characters:

Ex: If the input is:

n Monday
the output is:

1 n
Ex: If the input is:

z Today is Monday
the output is:

0 z's
Ex: If the input is:

n It's a sunny day
the output is:

2 n's
Case matters.

Ex: If the input is:

n Nobody
the output is:

0 n's

c++

Answers

Note that an example C++ code that counts the number of occurrences of a given character in a string:


#include <iostream>

#include <string>

int main() {

 char target_char;

 std::string input_str;

 std::getline(std::cin, input_str);

 std::cin >> target_char;

 int count = 0;

 for (char c : input_str) {

   if (c == target_char) {

     count++;

   }

 }

 std::cout << count << " " << target_char << "'s" << std::endl;

 return 0;

}

What is the explanation for the above response?


This code reads a line of input from the user and a target character to search for.


It then iterates through each character in the input string and increments a counter if the character matches the target character. Finally, it prints out the count and the target character. Note that this code is case-sensitive.

Learn more about characters at:

https://brainly.com/question/14683441

#SPJ1

In September 2015, a federal court considered the copyright claim for “Happy Birthday,” held by Warner/Chappell. “Happy Birthday” had the same melody and similar words as the “Good Morning” song, which was written in 1893 by two sisters. Publication of "Happy Birthday" occurred first in 1911 and it was mentioned at the time that the two songs shared the same tune.


Do you think that the Happy Birthday song deserves copyright protection based on these facts? What about copyright law?


Share the results regarding the outcome of the court case as well, include an opinion on what happened.


Include References

Answers

Answer:yes it is a copy right protection

Explanation:

Because,Happy Birthday” had the same melody and similar words as the “Good Morning” song, which was written in 1893 by two sisters.

Most games have characters that perform actions on the screen. What are these characters called?
Floats
Sprites
Fairies
Or Pixels

Answers

Answer:pixels

Explanation:

its the correct

Other Questions
drugs used to kill or damage cells and as immunosuppressants and antineoplastics is called Which of these statements are facts about Jefferson DeBlanc? Check all that apply. He was a Marine Corps fighter pilot. He was shot down over the Solomon Islands. He died at the end of World War II. He became a math and physics teacher. He was awarded the Congressional Medal of Honor. If your not at least 80% sure dont answer I already failed the first test What are the benefits of virtual teams? s which component of the heart conduction system would have the slowest rate of firing? a. atrioventricular node b. atrioventricular bundle c. bundle branches d. purkinje fibers clear agreements about authority, risks and sharing profits are needed when a business is organized as a(n) mckensie, inc., has outstanding 10,000 shares of $25 par value, 6% nonparticipating, cumulative preferred stock and 16,000 shares of $5 par value common stock. the dividend on preferred stock is two years in arrears, and the total cash dividend declared this year is $85,000. the total amounts distributed to preferred and common stockholders, respectively, are: largest group and made the least money in order to live a meaningful life, according to wolf, what must you have? Mr. Scully has hypothyroidism and has high levels of TSH. His T3 and T4 levels will be __________.A. decreased, causing the anterior pituitary to secrete excess TSH.B. normal, causing the anterior pituitary to secrete excess TSH.C. elevated, causing the anterior pituitary to secrete excess TSH.D. abnormally high, causing the anterior pituitary to secrete excess TSH Which answer below best describes this statement?Snappy Pops cereal will make you start your day with a cheery smile.O appeals to logic rather than emotionOsupports opinion with factO appeals to emotion rather than logic a source of precisely timed radio bursts, believed to be spinning neutron stars. what is the climax of el lugar mas bonito del mundo which statement about sexual differentiation and behavior of the fruit fly drosophila melanogaster is false? A book sitting on a desk with the surface area of the cover of .05 m^2. The atmospheric pressure is 100kPa. What is the downward force of the atmosphere on the book? Water flows through a pipe ofradius 0.0250 m at 1.50 m/s.What is the Volume Flow Rate?(Keep 3 sig figs.)(Unit=m^3/s)Help please What social and cultural actions are affecting the Colorado river for the previous light of 671 nm, if a light emitted 0.50 moles of this photon, what is the energy of this light? What brain function is affected by stressful environments Had to split question into two photos for words to remain clear and visible.78.You are calculating the NPV of one day's sales associated with a given credit policythat does not offer a discount and has an average collection period of 45 days. Youshould discount variable costs _____ days and credit administration and collectionexpenses ______ days.a.0,0 b.0, 45 *c.45, 45d.45, 0 The count in a bateria culture was initially 300, and after 35 minutes the population had increased to 1600. Find the doubling period. Find the population after 70 minutes. When will the population reach 10000?