You are studying for a test tomorrow. Your friends invite you to

the school's BIG basketball game. They say it's going to be an

exciting game and that you can study later. You decide to go to

the game. What type of decision-making method are you most

Likely using?


A. Intuitive

B. rational

C. Group

D. Emotional

Answers

Answer 1

Answer: C

Explanation:

Answer 2

The type of decision-making method are you most Likely using is Group decision-making method.

What is Decision-making?

In psychology, the term decision-making is known to be a form of  cognitive act that leads to the selection among options on belief or the right course of action to take.

Conclusively, the group decision-making method is the best as all will agree on one thing and do it and so there will be no issue.

Learn more about friends from

https://brainly.com/question/1973064


Related Questions


Can I control my digital footprint?



Answers

Answer:

yes you can

Explanation:

Answer:

Yes you can

Explanation:

1. Enter your name into several search engines.

2. Double check your privacy settings, but don't trust them.

3. Create strong, memorable passwords.

4. Keep all your software up to date.

5. Review your mobile use.

6. Build your reputation through your behavior.

A ________ is an input device that responds to finger touch.

Answers

1 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 2

What are the options?

During Which model states that communication can occur simultaneously?

Answers

Answer:

i dont see any models...please include a picture

Write a method that takes two circles, and returns the sum of the areas of the circles.

This method must be named areaSum() and it must have two Circle parameters. This method must return a double.

For example suppose two Circle objects were initialized as shown:

Circle circ1 = new Circle(6.0);
Circle circ2 = new Circle(8.0);
The method call areaSum(circ1, circ2) should then return the value 314.1592653589793.

You can call your method in the program's main method so you can test whether it works, but you must remove or comment out the main method before checking your code for a score.

Answers

Answer:

public static double areaSum(Circle c1, Circle c2){

 double c1Radius = c1.getRadius();

 double c2Radius = c2.getRadius();

 return Math.PI * (Math.pow(c1Radius, 2) + Math.pow(c2Radius, 2));

public static void main(String[] args){

 Circle c1 = new Circle(6.0);

 Circle c2 = new Circle(8.0);

  areaSum(c1,c2);

 }

Explanation:

The function calculates the sum of the area of two circles with their radius given. The program written in python 3 goes thus :

import math

#import the math module

def areaSum(c1, c2):

#initialize the areaSum function which takes in two parameters

c1 = math.pi * (c1**2)

# calculate the area of the first circle

c2 = math.pi * (c2**2)

#Calculate the area of the second circle

return c1+c2

#return the sum of the areas

print(areaSum(6.0, 8.0))

A sample run of the program is attached

Learn more : https://brainly.com/question/19973164

what is cicada 3301? i will give brainliest if you give me a correct answer (not copy and pasted) and somewhat well detailed, i guess

Answers

Answer:

From what I know it's a seris of web puzzles dating a few years back. The creators were looking for really smart people to work in their organizations as coders

the function of television

Answers

Answer:

Explanation:

it's to provide information and entertainment to the masses at a reasonable price.

Binary to Denary
11101111=

1111111=

Answers

Answer:

1110111= 239

1111111=127

Explanation:

The method is 1 ,2 ,4 ,8 16, 32 ,64 let me know if this helped g

The memory used by the CPU to temporarily hold data while processing is called what?

Answers

RAM, hope this helps

Answer:

random access memory

PowerPoint is best described as:
A Drawing Software
B Presentation software
C Desktop publishing software
D Database software

Answers

pick b , im pretty sure it’s it

PLEASE I REALLY NEED HELP
I have an hp laptop and it is FROZEN!! I cannot press x out of any of my tabs and the whole thing is frozen but I can pull up my settings and I can move my mouse. Shutting it off/down didn't work and it's still frozen please tell me what to do. also, will restarting it log me out of my whole account(s)? I NEED HELP PLEASEE

Answers

First try shutting down your computer for 5 minutes.

Turn it on if tabs are still open, try to right click it and press delete if you have that.

if you have none of your acounts try to make anew accounts the add a account to the new account you just made. still having peroblems, let me know?

Answer:

wait to it dies or hold the shut down button till it turns off

Explanation:

A teacher is writing a code segment that will use variables to represent a student's name and whether or not the student is currently absent. Which of the following variables are most appropriate for the code segment? ​

Answers

Complete Question:

A teacher is writing a code segment that will use variables to represent a student's name and whether or not the student is currently absent. Which of the following variables are most appropriate for the code Segment?

Group of answer choices.

А. A string variable named s and a Boolean variable named a.

B. A string variable named s and a numeric variable named A.

С. A string Variable named studentName and a Boolean variable named isAbsent.

D. A string Variable named studentName and a numeric variable named absences.

Answer:

C. A string variable named studentName and a Boolean variable named isAbsent.

Explanation:

In Computer programming, a variable stores information which is passed from the location of the method call directly to the method that is called by the program.

In this scenario, teacher is writing a code segment that will use variables to represent a student's name and whether or not the student is currently absent.

Hence, the variables which are most appropriate for the code segment are a string variable named studentName and a Boolean variable named isAbsent.

Basically, the string variable named studentName would only accept or hold values that are alphabetic but not numerical value. Thus, the variable studentName would represent the name of a specific student.

Also, the Boolean variable named isAbsent would accept values that are either "True" or "False" because it works on the principle of Boolean logic (0 for false and 1 for true).

This is a human-made physical system.

A) ecosystem

B) health care system

C) bicycle

D) school system

Answers

Health care system and school system

17. What is something an employer might look for in person when hiring? (3
points)
A. Someone with a positive attitude
B. Someone with positive qualities such as honesty, tolerance, and
patience
C. Someone easy to work with
D. All of the above

Answers

D. all of the above
D. All the above

Why? Since all these qualities are valuable when hiring someone, you want them to be polite and respectful. It will also make working with this person better since you won’t have to deal with some rude or nasty.

val = 50

def example():
val = 15
print (val)

print (val)
example()
print (val)

Answers

Answer:50

15

i dont know the 3rd number but hope it helped

Explanation:

Based on the given scenario above, the output will be 50, 15, 50. Check more about output  below.

What are computer outputs?

An output is known to be a kind of data that a computer is said to bring out after processing.

Based on the above, conclusively, looking at the programming code, we can say that the output will be 50, 15, 50.

Learn more about programming from

https://brainly.com/question/23275071

#SPJ2

Use the drop-down menus to complete the statements about message marking, categorizing, and flagging.

After skimming a message, you can mark it as
if you want to come back to it later.

Categories are color coded and can be renamed and sorted in the
pane.

The Outlook command for “flagging” a message is called
.

Flagged messages can be viewed in the
and can be customized for name, due date, and reminders.

Answers

Answer:

unread

message

follow up

to-do bar

Explanation:

Activity 5.8
Find out how the operation of colour laser printers differs from the operation of monochrome
laser printers.

Answers

monochrome laser printers use one black toner cartridge, while monochrome printers use four different color cartridges! i hope this is what you were looking for and i could help out!

Select the correct answer.
An automobile manufacturing organization noted a drop in sales after an incident occurred due to the lack of a safety feature in their cars. Many customers began considering other brands of cars after this incident. How can the organization avoid losing customers?
A.
introducing customer retention strategies
B.
detecting customer fraud
C.
classifying customers into groups
D.
applying medical research



Answer is A- introducing customer retention strategies

#platogang

Answers

The correct answer is A

Answer:

The answer is A

Explanation:

What is the difference, if any, between the end user and the target audience of a digital media piece?

A. The end users and the target audience are the exact same group of people.

B. Some of the target audience may end up as end users if they are rewarded for their participation in the testing phase.

C. End users have nothing to do with the target audience, as they are involved with different parts of the project.

D. Some of the end users are likely also members of the target audience, but not all of them.

Thank you!!

Answers

Answer:

a

Explanation:

Rachel has set up a computer network. In this network, due to a device, the computers partake in the message transfer process. Which device is this? A. NIC B. hub C. modem D. switch E. bridge

Answers

Answer:

B. hub

Explanation:

Hub is a device that connects two or more computers together to make a Local Area Connection (LAN). It receives message and sends it to every computer on the network through a hub cables plugged into it from each computer. It enables each individual computer to partake in the message transfer process and each users can listen to the information. It is typically used at the centre of a star network and it is mostly regarded as an unsecured network.

Answer:

b

Explanation:

What is assembler? What is Compiler?What is interpreter?

Answers

Answer:

A compiler is a software that converts programs written in a high level language into machine language.

An interpreter is a software that translates a high level language program into machine language while an,

assembler is a software that converts programs written in assembly language into machine language.

Explanation:

1A. Assembler is a program that converts assembly level language (low level language) into machine level language.

2A. Compiler compiles entire C source code into machine code.

3A. interpreters converts source code into intermediate code and then this intermediate code is executed line by line.

PLEASE THANK, RATE AND FOLLOW ME,

AND PLEASE MARK ME AS "BRAINLIEST" ANSWER

HOPE IT HELPS YOU

Which of the following types of information can be stored in an electronic database?
-Text
-Alphanumeric
-Date
-All of the above

Answers

All of the above I believe

The types of information that can be stored in an electronic database is text, alphanumeric, and also date. The correct option is D.

What is a database?

A database is a structured collection of information or data that is typically stored electronically in a computer system. A database management system is usually in charge of a database (DBMS).

Any collection of data or information that has been specially organized for rapid search and retrieval by a computer is referred to as a database.

Databases are designed to make it easy to store, retrieve, modify, and delete data in conjunction with various data-processing operations.

Text, alphanumeric, and date information are all examples of information that can be stored in an electronic database. A database's five major components are hardware, software, data, procedures, and database access language.

Thus, the correct option is D.

For more details regarding a database, visit:

https://brainly.com/question/6447559

#SPJ3

Suppose you are working as an animator for a children's movie. You are responsible for drawing the
main character: an animated dog. Which file format is best suited to your line of work?
GIF
JPEG
PNG
RAW

ANSWER IS GIF

Answers

Answer:

the next slides answers are B & D

Explanation:

Answer:

GIF

Explanation:

What is a torque?
A. A linear force
B. Push or pull in a circular direction
C. A jumping force
D. A friction test

Answers

Answer:

D. A friction force

who here can move stuff with there minds

Answers

Answer:

I can, at least I wish I could, it be like having the force which would be amazing.

Explanation:

Listed here are a few camera angles and their images.

Answers

Answer:

The dog is: Close up

The bike rider is: Point-of view shot

The tower is: Long angle shot

and the boy at the beach is: Wide shot

Explanation:

Robin has four copies of her midterm paper saved to a single folder on her
Windows computer. She wants to move each of these four files into a
separate folder within the existing one. How can Robin perform this task for
each file?
A. Right click on the folder containing all four files, select "Copy."
Open the same folder, select "Paste." Enter the new folder's title.
B. Open the folder containing all four files, right-click in the folder
window, select "New" enter the new folder's title, click on one file,
drag it into the new folder.
C. Open the folder containing all four files, right-click on one file,
select "New Folder," enter the new folder's title, click on the same
file, drag it into the new folder.
O
D. Open the folder containing all four files, right-click in the folder
window, select "New Folder," enter the new folder's title, click on
one file, drag it into the new folder.

Answers

Answer:

d

Explanation:

i took the test

18. Hard skills can be used on almost any job. (3 points)
A. True
B. False

Answers

i think False brcause tgere are some jobs that dont need hard skills but at the same time am not really sure
Every job requires hard skills that are industry- specific and usually form the basis for the job requirements.

key is used to enter commands or to move the cursor to the begin
of the next line
a) Delete key
b) Shift key
c) Ctrl key
d) None of these​

Answers

I believe the answer would be D

Help me with this please. I'll mark Brainiest

Answers

What do you need help with?

Which output device allows a user to create a copy of what is on the screen?

Answers

well it's obviously printer

Answer:

display or monitor

Explanation:

because those are things a user can create a copy of what is on the sceen

Other Questions
The science of genomics does not investigate:the mistakes made during the analysis of DNA samplesmedical applications of DNA analysisthe possible mutation of a gene causing blindness in ratswhich genes cause the loss of hair among some men Janice got a raise in her hourly pay, from $9.75 to $11.50. Find the percent change. Round to the nearest tenth of a percent. HELP ME PLEASEsentence combining1. Ostriches are birds. Ostriches are the fastest in the world. Ostriches are the largest in the world. Ostriches are found in Africa. a. Found in Africa, ostriches are birds that are the fastest and the largest in the worldb striches, the fastest and largest birds in the world, are found in Africa. c. The fastest and largest birds are found in Africa and are ostriches.d. Ostriches are the fastest in the world and the largest in the world and are found in Africa. Where are the electrons inside an atom?A.The electrons are in the nucleus of an atomB.They are arranged in energy levelsC.The electrons are spread equally throughout the atom PLS HELPWill give brainliest pls help!The graph of Fx), shown below, has the same shape as the graph ofG(X) = x - x2. Which of the following is the equation of Fx)?Fb =A. Fx) = 44-2-3O B. F(x) = 3 - 44-32O C. F(x) = x4 - 12+ 3O D. F(X) = 44 - x2 RequiredMomentumThe magnitude of the momentum of an object is 64 kg*m/s. If the velocity of theobject is doubled, what will be the magnitude of the momentum of the object? *32 kg*m/s64 kg*m/s128 kg*m/s256 kg*m/s Rachel has set up a computer network. In this network, due to a device, the computers partake in the message transfer process. Which device is this? A. NIC B. hub C. modem D. switch E. bridge What powered the Industrial Revolution? A. coal and woodB. coal and steamC. water power and woodD. water power and steam what what zimbabwe like before imperialism A sqaure window is 2 meters long on each side. To protect the window during a storm, Marisol plans to put a strip of duct tape along each diagonal of the window. To the nearest tenth of a meter, what is the toal length of duct tape Marisol will need. Please give equation. Select three pronouns that are used incorrectly.Christopher said, "We are going on a field trip tomorrow." "Jenny and me are so excited!" said Sarah. The teacher said, "We all need to be polite on the field trip." Kamal said him would try his best. "Everyone needs to worry about ourselves," said the teacher. "We will!" we promised. If the caffeine concentration in a particular brand of soda is 2.57 mg/oz, drinking how many cans of soda would be lethal The following are independent situations. a. A new company is formed and shareholders invest $12,000 cash. b. A company purchases for $18,000 cash a new truck that has a list price of $21,000. c. A company pays stockholders a $10,000 cash dividend. d. A company purchases a piece of land for $50,000 cash. An appraiser suggests that the value of this land is $55,000. e. A company declares dividends of $1,100 to the shareholders but does not pay them yet; the company will pay these dividends in 60 days. f. A company has to pay monthly wages of $5,600 to its employees; the company will pay them in two weeks.Required: 1. Indicate the appropriate account titles, if any, affected in each of the preceding events. Consider what is received and what is given. 2 At what amount would you record the truck in (b)? The land in (h)? What measurement principle are you applying? 3. For (c), what accounting concept did you apply? For (J), what accounting concept did you apply? key is used to enter commands or to move the cursor to the beginof the next linea) Delete keyb) Shift keyc) Ctrl keyd) None of these Pls help quick thank u Question 4 (1 point)If 2x + 8 = 16, what is the value of x+42Answer:Blank 1:Review AnswersNeed help plz What type of molecule is used to cut genes from a DNA of an organism Describe what a shatter belt is in your own words. Determine the change in velocity between 2.0 to 6.0 seconds. ____Group of answer choices-1.6 m/s-2.1 m/s-9.5 m/s Identify the numbers that are located to the right of -4 1/3 on a horizontal number line. A. -1/2 B. 5 1/2 C. -4 2/3D. -3 2/3E. -1 2/3F. -5 1/2G. 2/3H. -4coulb be more than one