Select _______ to apply formatting to several cells at the same time. A. a cell containing a value
B. a range
C. any cell
D. a label text cell

Answers

Answer 1
Answer: B. a range I do believe

Related Questions

David writes an essay as part of an assignment at school. He wants to indent the first lines of several paragraphs. With a word processing program such as OpenOffice Writer, which tab in the Paragraph dialog box would allow him to indent the first line automatically?A) Alignment B) Indents & Spacing C) Text Flow D) Outline & Numbering
Software that interprets commands from the keyboard and mouse is also knows as
(03.05 LC) Match the term with its description. (4 points) Column A 1. Acid : Acid 2. Alkaline : Alkaline 3. pH : pH 4. Ion : Ion Column B a. An atom or molecule that has a positive or negative charge b. A value from 0 to 14 that is used to specify how acidic or basic a compound is when it is dissolved in water c. A compound that increases hydrogen ions (H+) when it is dissolved in a solution d. A compound that increases the hydroxide ions (OH-) when it is dissolved in a solution
What is the best term to describe an increasingly intense and vicious debate online?a. arguing b. fighting c. flaming d. spamming
Apple s iPad2 can complete approximately 1.5______ mathematical operations per second. Answer million billion thousand trillion

Which of the following is FALSE? Select one: a. The fast-paced and collaboration-based business environment makes email less useful. b. Email is the dominant form of communication in business and in education. c. The Atos case demonstrates that it is possible to cut out e-mail entirely. d. Email is often associated with information overload and stress.

Answers

Answer:

The Atos case demonstrates that it is possible to cut out e-mail entirely.

Explanation:

The best description of a propriety database

Answers

a proprietary database is a database that is privately owned and password protected. i hope this helps!!!! :)

When breaking one of the “rules” of photography, it should be which of the following?a. Hardly noticeable
b. Accidental
c. Deliberate
d. You should never break the rules if you want a good photograph

Answers

Answer

Deliberate

Explanation

Breaking a rule deliberately means you do it in careful and an hurried manner in such a way that it wont bring a negative outcome. This means you have crossed the line and gone beyond the accepted or beyond the limits and the photography behaviors

The answer is Deliberate

Deliberately breaking a few rules in photography can lead to some fairly spectacular results. A few photography rules are worth knowing and which can be fun and effective to break. One of the few rules you can break is to deliberately hold your camera on an angle. It is highly recommended to keep your images straight. However, breaking this rule can lead to images with drama, action, and fun. The other rule worth breaking is the rule of thirds. This rule is meant to be a great compositional aid. Breaking it can make you end up with two different interpretations of the same scene.

A group of statisticians at a local college has asked you to create a set of functions that compute the median and mode of a set of numbers, as defined in Section 5.4. Define these functions in a module named stats.py. Also include a function named mean, which computes the average of a set of numbers. Each function should expect a list of numbers as an argument and return a single number. Each function should return 0 if the list is empty. Include a main function that tests the three statistical functions. Ask users to enter the list of numbers, and then choose which function to apply to those numbers. After the single number is returned from the correct function, display to the user the list of numbers, the function selected and the answer in a format that is easy to understand.

Answers

Answer:

from functools import reduce

def mean(mylist):

   score = reduce(lambda x,y: x + y, mylist)/ len(mylist)

   return score

def median(mylist):

   sorted(mylist)

   list_len = len(mylist) % 2

   i = round(len(mylist)/2)

   x = len(mylist)//2

   if list_len == 0:

       median = (mylist[x] + mylist[x+1]) / 2  

   else:

       median = mylist[i]

   return median

def mode(mylist):

   unique = set(mylist)

   unique = list(unique)

   collector = [mylist.count(key) for key in unique]

   maxi = max(collector)

   loc = collector.index(maxi)

   return unique[loc]

def main():

   scores = input( 'Enter list of numbers: ').split(",")

   scores = [int(score) for score in scores]

   

   operation = input('Enter operation: ')

   operator = ['mean', 'median', 'mode']

   

   for x in iter(list, 0):

       if operation in operator:

           break

       print("Invalid operation: ")

       operation = input('Enter operation')

   

   index_loc = operator.index(operation)

   

   if index_loc == 0:

       return mean(scores)

   elif index_loc == 1:

       return median(scores)

       #return np.median(scores)  can be used of the defined function

   elif index_loc == 2:

       #return stats.mode(scores)[0]  can be used of the defined function

       return mode(scores)

print( main( ) )

Explanation:

The main python function calls conditionally three statistical functions namely mean, median and mode. It prompts for user input for a list of integer numbers and a function name name to return the corresponding result.

Compared to today’s computers, computers from the 1970s were ________.a. Bigger and more powerful
b. Smaller and more powerful
c. Bigger and less powerful
d. Smaller and less powerful

Answers

The technology if compare to now and the past is such a great distance. My answer would be letter (C) because the computers in 1970 are not yet simplify and the circuits is still big that it would not fit in small box. Also the speed of calculation of each is not that fast

Answer:

C or 3

Explanation:

Compared to today's computers, computers from the 1970s were bigger and less powerful.

Sub to my you tube at

Pen Paper

The most recent subfield of the quantitative perspective is _____, which is reflected in management information systems designed to provide relevant information to managers in a timely and cost-efficient manner. a. operations research b. infrastructure development c. information technology d. systems thinking e. operations management

Answers

Answer:

The correct answer to the following question will be Option C (Information technology).

Explanation:

IT was the use of certain devices, connectivity, computing, and other virtual equipment, networks and procedures to produce, manage, preserve, protect and share all types of information.

  • It is usually used against individual or media technology in the form of operations.
  • That's the most current analytical perspective field of study that is embodied in information systems programs designed and provides administrators with necessary data consistently and cost-effectively.

So, Option C is the right answer.

Answer:

c. information technology

Explanation:

The most recent subfield of the quantitative perspective is information technology, which is reflected in management information systems designed to provide relevant information to managers in a timely and cost-efficient manner.