Put the steps of the decision-making process in the correct order.
1. Step 1
Gather data.
2. Step 2
Analyze choices.
3. Step
Make the decision.
4. Step 4
Evaluate the decision.
5. Step 5
Determine the goals.

Put The Steps Of The Decision-making Process In The Correct Order.1. Step 1Gather Data.2. Step 2Analyze

Answers

Answer 1

Answer:

step 5, step 1, step 2, step 3, step 4

Explanation:

I belive that would be the answer. I hope this helps.


Related Questions

Which line of code will use the overloaded division operation?
class num
definit__(self,a):
sell number = a
del_add___(self,b)
return self. number + 2 b.number
def__mul_(self, b)
return self.number + b.number
def_pow_(self, b):
return selt number + b number
def_truediv_(self,b);
return self number + 10 b.number
numA = num(5)
numB = num(10)

A.result = truediv(numA, numB)

B.result = numa/numB

C.result.truediv(numA, numB)

Answers

Answer:

B. result = numA/numB

Explanation:

__truediv__ overloads the / operator in Python. Since that has been defined in the class "num" and numA and numB are both objects of type "num" (numA / numB) will call num.__truediv__ using numA as "self" and numB as "b".

A laser printer uses...........
A. Correction fluid
B. Ink cartridge
C. Photocopy ink
D. Toner cartridge ​

Answers

Answer:

Toner cartridge

Explanation:

I of 60
MUL
FINISI
a
The view in which the field data types and field properties for a database table can be seen in Microsoft
Access is called the...
0.5 POINTS
A
00
Datasheet view
B
design view
с
D
SQL view
dashboard view
E
field view

Answers

The view in which the field data types and field properties for a database table can be seen in Microsoft Access is called the Datasheet view.

What is datasheet view?

A datasheet form is known to be the view that shows a user the information recorded using a table.

Note that the properties of a field tells users the characteristics and attributes of data added to that field. A field's data type is therefore a vital  property as it helps one to know the kind of data the field can save.

Learn more about database  from

https://brainly.com/question/26096799

Question 1 (1 point)
Jenna has created a wizard class. She has used the class to build two wizard objects
a
in her game. Which programming term describes the objects that Jenna built using
the wizard class?
A. Occurrences
B. Subclasses
C. Instances
D. Methods

Answers

Answer:

Subclasses

Explanation:

It's B for Plato students, took this not that long ago!

Use HTML and CSS, create a web page for the table shown below. Please copy (and paste) your code from your text editor (Replit).



Answers

This is big sorry I can’t do it

What are the four steps of the binary search algorithm

Answers

Answer:

Step 1 - Read the search element from the user.

Step 2 - Find the middle element in the sorted list.

Step 3 - Compare the search element with the middle element in the sorted list.

Step 4 - If both are matched, then display "Given element is found!!!" and terminate the function.

Answer:

These are the main steps are given the photo below

I hope my answer helps you.

Which one of the following tuned-adm commands will set the Tuning Profile to desktop?

Answers

The "yum search tuned" command. tuned-adm commands will set the Tuning Profile to desktop.

What is tuning profile?

The term Tuned is known to be a form of daemon that employs the use of udev to look into connected devices and so it also  statically or dynamically tunes system settings based on  a clicked profile.

Conclusively, Tuned is known to often shared with a number of predefined profiles that are often used in some common use cases such as high throughput, low latency, etc.

Learn more about  tuning profile from

https://brainly.com/question/23275071

what does the GPU do?

Answers

Answer:

With graphics processing units (GPU), many pieces of data can be processed simultaneously, which makes them useful for applications such as machine learning, editing, and gaming. It is an electronics circuit capable of accelerating the processing of images, animations, and videos.

Explanation:

19) If you want to find your lowest paid, full time employee (with "FT" in column B and each employee's salary found in column C), you would use the ________ function.

A. IFSMAX


B. MAXIF


C. MIN


D. MINIFS

Answers

Answer:

MAXIF

Explanation:

The MAXIF function is a function used in Ms Excel.

This function indicates the maximum value located on an array .

Option B

Answer:

Maxif

Explanation:

If you want to find your lowest paid, full time employee (with "FT" in column B and each employee's salary found in column C), you would use the MAXIF function.

What service handles the execution of missed cron jobs in the /etc/cron.hourly, /etc/cron.daily, /etc/cron.weekly and cron.monthly files?

Answers

The service handles the execution of missed cron jobs is /etc/crontab.

Where are /etc/crontab is system crontabs file?

This is a command that is often used by root user or daemons. It is used to configure system different kinds of jobs.

Vonclusively, Cron jobs are often seen  in the spool directories. They are known to be often stored in tables known as crontabs. This /etc/crontab. is a service handles the execution of missed cron jobs.

Learn more about commands from

https://brainly.com/question/25243683

A common test for divisibility by 3 is to add the individual digits of an integer. If the resulting sum is divisible by 3 then so is the original number. Program this test. To do this, first define a function: reduce(number) which returns the sum of the digits of the number argument. The sum returned must be < 20 i.e. if the sum is >= 20, the function must add the digits of the resulting sum. It should repeat this procedure until the sum is < 20. Use this function in a python program that inputs an integer from the user and prints out whether or not the integer is divisible by 3.​

Answers

The function to test for divisibilty by 3 will accept an input integers and divide it by three to check if its divisible by 3.

The function to test for divisiblity by 3 is as follows:

integer = input("input the integer to check if it's divisible by 3: ")

def reduce(integer):

    list1 = []

    sum1 = 0

    for i in str(integer):

         list1 += i

    results = list(map(int, list1))

    for x in results:

         sum1 += x

    if sum1 < 20 and sum1%3==0:

         return "The integer is divisible by 3"

    elif sum1 < 20 and sum1%3 != 0:

         return "The integer is not divisible by 3"

    else:

         while sum1 >= 20:

              z = sum(list(map(int, list(str(sum1)))))

              if z%3==0:

                   return "The integer is divisible by 3"

              else:

                   return "The integer is not divisible by 3"    

print(reduce(integer))

Code explanationThe integer variable stores the users input.We define a function called "reduce". The reduce function accepts the interger variable as a parameter.The code loop through the integer and check if it is divisible by 3. If the sum of the integer number is greater or equals to 20, we divide the resulting sum by 3 .If the integer is divisible by 3, we return "it is divisble by 3" and if it is not dividible by 3, it will return "it is not divisble by 3".

learn more on python here: https://brainly.com/question/13437928

Other Questions
8.Which of the following themes about the power of place do both texts share?A. Some people enjoy exploring new places, but some people prefer familiarplaces.B. Becoming assimilated into an unfamiliar environment can be uplifting ordepressingOC. Open areas and rural environments offer a different kind of excitement.OD. To become part of a new place takes patience and a willingness to try newthings. How does tension affect the speed of a wave in a rope Rewrite the expression ^3 square root of x^8 using rational exponents. What is the power output of the stickman that pushes the box 5 meters in 3 seconds with a constant force of12 N? Find the additive inverse of 4x + 3 . Find the circumferences of both circles to the neartlest tenth What is the meaning of the word woe as it is used in the following passage fromThe Tragical History of Romeus and Juliet?Impatient of her woe, she happed to lean one nightWithin her window, and anon the moon did shine so brightThat she espied her love: her heart revived sprang;And now for joy she claps her hands, which erst for woe she wrang.A. It is an expression of joy.C. It means sorrow.B. It is an expression of surprise.D. It means to wring your hands Please help as soon as possible Complete the sentence with the words from the box My God, I'm so lonelySo I open the windowTo hear sounds of peopleTo hear sounds of peopleVenus, planet of loveWas destroyed by global warmingDid its people want too much, too?Did its people want too much?And I don't want your pityI just want somebody near meGuess I'm a cowardI just want to feel alrightAnd I know no one will save meI just need someone to kissGive me one good honest kissAnd I'll be alrightNobody, nobody, nobodyNobody, nobodyOoh, nobody, nobody, nobodyI've been big and smallAnd big and smallAnd big and small againAnd still nobody wants meStill nobody wants meAnd I know no one will save meI'm just asking for a kissGive me one good movie kissAnd I'll be alrightNobody, nobody, nobodyNobody, nobodyOoh, nobody, nobodyNobody, nobody, nobody The area of a rectangle is3/8 in and the length is 5/8 What is the width? In 1-2 sentences, describe what happens to atoms of a compound when a chemical reaction occurs Vertical angles are always adjacent. True False Do number 9 please thank you Hello Brainly i have a question should i draw big ben or the white house or the london tower bridge which should i draw first second and last NEED HELPPPP!!!!!!!!! A bag contains 10 marbles: 2 are green, 3 are red, and 5 are blue. Boris chooses a marble at random, and without putting it back, chooses another one atrandom. What is the probability that both marbles he chooses are red? Write your answer as a fraction in simplest form. How do textbooks typically describe the BPP? Which of the following objects would have the greatest: A. momentum if they were all moving with the same velocity? B. Inertia?A compact car B school busC Pick-up truck D road bicycle Differentiate y = tanx from first principle