100pts!!!! It can be challenging to create algorithms that are not biased towards minority groups because machine learning works by _____. Select 2 options.


1. discarding outliers

2. excluding majorities

3. including outliers

4. discarding patterns

5. determining patterns

Answers

Answer 1
100pts!!!! It can be challenging to create algorithms that are not biased towards minority groups because machine learning works by _____. Select 2 options.


1. discarding outliers

2. excluding majorities

3. including outliers

4. discarding patterns

5. determining patterns

Related Questions

When creating an if() statement, when are curly braces required?
A. when there is only one statement line related to the test condition
B. when there are two or more statement lines related to the test condition
C. never
D. always

Answers

Answer:

B. When there are two or more statements lines related to the test condition.

Sorry if I got it wrong.

Make a String ArrayList.Then write a Java method that swaps the first and last elements.

Answers

Answer:In order to swap elements of ArrayList with Java collections, we need to use the Collections.swap() method. It swaps the elements at the specified positions in the list.

Declaration −The java.util.Collections.swap() method is declared as follows

public static void swap(List <?> list, int i, int j)

where i is the index of the first element to be swapped, j is the index of the other element to be swapped and list is the list where the swapping takes place.

Explanation:

import java.util.*;

public class Example {

  public static void main (String[] args) {

    ArrayList<Integer> list = new ArrayList<Integer>();

     list.add(10);//0

     list.add(20);//1

     list.add(30);//2

     list.add(40);//3

     list.add(50);//4

     System.out.println("Original list : " + list);

     Collections.swap(list, 4, 0); // swapping element at index 3 i.e. 50 and index 1 i.e. 10

     System.out.println("List after swapping : " + list);

  }

}

What will happend when I got a BSOD in Windows?

Please answer this question. I'll give You 50 points for free!

Answers

Answer:In Windows OS, the Blue Screen of Death or BSOD appears after a serious system crash that indicates there is some major issue with your PC. Typically, the BSOD—also referred as STOP error — is related to critical hardware and driver misconfiguration, damage, and failure.

Explanation:

Answer:

A blue screen error (also called a stop error) can occur if a problem causes your device to shut down or restart unexpectedly. You might see a blue screen with a message that your device ran into a problem and needs to restart.

A set of photographs has been taken for a wedding. All the guests are to be sent digitally
stored copies through the ordinary postal service. There are fifty photographs and each
photograph is between 1.8 and 2.5 megabytes in size.
Work out the maximum storage space required for a set of photographs. State, with a
reason, a suitable medium to use for the copies to be sent to the guests.

Answers

In the case above, the maximum storage space will be 125 megabytes.

Note that:

Medium size: CD / low capacity flash memory.The Reason is because it is good for mailing and less expensive to get.

What is storage space?

This is known to be the amount of place or area a phot can occupy in terms of photography.

Note that, In the case above, the maximum storage space will be 125 megabytes.

Note that:

Medium size: CD / low capacity flash memory.The Reason is because it is good for mailing and less expensive to get.

Learn more about photographs from

https://brainly.com/question/25821700

#SPJ1

Operational level management can be supported by the systems except Select one: 01. Transaction Processing System 2. Manufacturing Information System 3. Executive support system 4. Financial management system ​

Answers

Answer:

01×3=3

=3

Explanation:

mousamyuig9uuygytyugghbhhbhhbhh

what are storage devices? write two such devices​

Answers

Answer:

two types of storage devices used with computers a primary storage device such as r a m and the secondary storage device such as a hard drive secondary storage can be removable internet or external

Explanation:

hope it is helpful for you please make me brilliant only if you like this answers

Answer:

Devices which stores computer data and information are called storage devices

ex - RAM ( random excess memory)

ROM ( read only memory).

Algorithm to find odd integers between 1 and49 ​

Answers

Answer:

1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49.

You are preparing to communicate to an audience about analysis project. You consider the roles that your audience members play and their stake in the project. What aspect of data story telling does this scenario describes?

Answers

The aspect of data story telling does this scenario describes is audience engagement.

What is Audience engagement?

This is known to be  user engagement and it is a term that connote  the cognitive, emotional, or affective form of experiences that users do get or have with media content or any kind of brands.

Note that in the case above, the aspect of data story telling does this scenario describes is audience engagement.

Learn more about project from

https://brainly.com/question/13374052

#SPJ1

what are output devices? name any two common output devices.​

Answers

Answer:

Devices which display the result of the command or which gives outputs are called output devices

ex monitor - it gives display of all the command performing in the computer..

Answer:

An output device is any hardware device used to send data from a computer to another device. its common output device are video,audio.

Which of the following keys on the keyboard is used to quickly indent text

Answers

you have to use tab on the keyboard

ConstructalogicnetworkthatrealizesthethreeinputORfunction(A+B+C) using only two input NAND gates (AB)’. Prove that your design works correctly by annotating the output of each NAND gate with its Boolean equation.

Answers

Answer:

I think that the grade my teacher gave me on my test is wrong

Suppose you have 10 image files, each taking up 300 KB. About how many MB of space do they take up
overall?

Answers

Answer:

b

Explanation:

porque es la única a la cual puedes poner ssi querés sabe neibw idbe

Answer:

3MB

Explanation:

300KB×10files=3000KB

1MB=1000KB

so:

3000KB=3MB

what is a characteristic of an effective scrum master

Answers

It is a characteristic of an effective master that Knowledgeable. The exceptional Masters have the technical, market, or precise expertise to assist the group in its goal.

What are the traits of the Master?

This is a given, in any role. However, as you're listening, comprehending, repeating, summarizing, energizing, observing, writing, simplifying, critiquing, suggesting, asserting, , presenting - all in one.

A powerful Master is a group-primarily based totally servant chief who: Exhibits leadership – Exhibits the behaviors of a Leader with a Mindset. Helps the group embody Core Values, undertake and follow Principles, and put in SAFe practices.

Read more about the master:

https://brainly.com/question/4763588

#SPJ1

3.12 LAB: Output range with increment of 5 Write a program whose input is two integers, and whose output is the first integer and subsequent increments of 5 as long as the value is less than or equal to the second integer. Ex: If the input is: -15 10

Answers

The INPUT code of the given programme in Java would be as given below:

In this first we are taking input of two integers j and k from the user and then performing the required operations over it

import java.util.

Scanner;  public class LabProgram {    

public static void main(String[ ] args) {  

Scanner scnr = new Scanner(System.in);        

 int i,j;        

 i  = scnr.nextInt();        

 j = scnr.nextInt();        

if(i<=j) {            

int k = i;            

while (k <= j) {                

System.out.print(k + " ");                

 k = k + 5;            

 }            

 System.out.println();        

 }        

 else{            

 System.out.println("Second integer can't be less than first.");                  

}    

}

}  

Learn more about Java Programming here:

https://brainly.com/question/18554491

#SPJ10

When replacing a defective switch what is necessary characteristic of a new switch

Answers

The complete question is :

When replacing a defective switch, what is a necessary characteristic of the new switch?

Select one:

a. Greater number of poles and throws than the original switch

b. The same number of positions as the original switch

C. Identical cover plate as the original switch

d. Greater current ratings than the original switch

So, according to it the correct answer is option d. Greater current ratings than the original switch.

What is a switch?

A switch is a component of physical circuitry that controls the flow of signals. A switch or toggle switch enables the opening or closing of a connection. The switch permits a signal or power to pass through the connection when it is opened. The switch cuts the circuit connection and halts the flow when it is closed.

Learn more about switches here https://brainly.com/question/14883923

#SPJ10

identify four input devices that can convert hard copy pictures or into a digital format ​

Answers

Answer:

(a) graphics tablet

(b) scanner

(c) MICR

(d) OMR

What is not a computer software?
a. web browser
b. powerpoint
c. motherboard

Answers

Answer:

Motherboard

Explanation:

Its a device in the computer that helps it run while powerpoint and web browser are just things you can do with your computer to make or create information.

15. How many PC’s can be connected to a UPS?

Answers

Answer: Depends on the power of the computer /computers and the UPS

Explanation: For someone who had a big connected network of computers and printers we would plug the computer or server into the UPS as well as the monitor and sometimes a printer sometimes the monitor was plugged into the wall

When you get a UPS you must plug it in for a certain time could be hours or even a day.  A USP has a big battery in it and you must charge it (sometimes it comes semi-charged but you must plug it in to strengthen it. )

there are two connector wires that you affix to the battery and you must put a lot of strength into it to make it secure.

So in closing, you can get away with two like a desktop and a laptop.

Read your documentation that comes with the UPS

What are key objectives of DevOps at Accenture?

Answers

The key objectives of DevOps at Accenture is simply to deliver services faster, with higher quality and with security built in.

What are DevOps?

DevOps can be defined as a set of tools, processes, practices, and a cultural philosophy that are combined so as to help in automating and integrating the processes that exist between software development and information technology (IT) teams.

This ultimately implies that, the key objectives of DevOps is focused on the ability of Accenture to deliver software applications and services at high velocity, with higher quality and with security built in.

Read more on DevOps here: https://brainly.com/question/24306632

#SPJ1

You get a text. It is a reminder from your dentist’s office that you have an appointment tomorrow. It says to type “1” to confirm or “2” to cancel the appointment. You accidentally type a “3” and nothing happens. How could the input validation be improved?

Answers

Answer:

Redo the one you want

Explanation:

Redo the "1" if you are confirming the appointment

Or "2", if you do not.

Do not fret over this worse, comes to worse call your dentist back and explain you hit the 3 by mistake and then tell them your decision .

**HELP ME PLS**

A report tried "Employees in Company A contains the names of employees in descending alphabetical order, with the
number of years each employee worked at the company. Which statement is true? A.The report is grouped only because it gives information about employees by number of years of employment.

B.The report is soned only because it gives information about employees by number of years of employment.

C.The report is grouped only because it organizes the names of the employees in alphabetical order.

D.The report is sorted only because it organizes the names of the employees in alphabetical order.

Answers

The true statement is the report is grouped only because it gives information about employees by number of years of employment.

What is a group report?

Group reporting is made up of consolidation method and analytical reports and it gives information on the output of a firm.

Note that since there are different ranges of employment years, the report need to be grouped and as such, The true statement is the report is grouped only because it gives information about employees by number of years of employment.

Learn more about group report from

https://brainly.com/question/13628349

#SPJ1


- factors to consider when buying a computers

Answers

Answer:

money

Explanation:

for working for socializing with others

what is the function of computer?​

Answers

[tex]\huge\purple{Hi!}[/tex]

the four basic function of a computer are input, storage, processing and output.

Give me an answer. How to hack somebody click 'disabled​​​​​​​' to my office wifi? I can't use it no longer.​​​​

Answers

How to hack somone is illegal but for study purposes there is yt tutorials that I recommend You watch because hacking is not simple and it requires a pc or laptop There is multiple ways to hack somone as well A commAn way for hacking is to self fake links

What is the value of X when line 30 is executed in the program below:
10 X = 5
20 X = X + 5
30 X = X/5 + X
40 X = X * 5
50 X = (X - 5)/5

this is for qbasic btw

any helpis appreciated pls only correct answers

Answers

Answer:

X = 12

Explanation:

The primary value of X is 5. In line 20 X = X + 5, which is saying the primary value of X ,5, + 5, this is going to return the value of X to now become 10. Now the primary value of X in the program has changed to 10.

In line 30 X = X/5 + X, keeping in mind that the new primary value is not 5 but 10. So now line 30 is saying X = 10/5 + 10. This return the value of X to be 12.

the most popular input device for computer game is called?

Answers

Answer:

joystick

Explanation:

A joystick is an input device that monitors and transmits motion input to the Processor. It monitors any minute changes in direction using a central pivot, then transmits this input to be analyzed and generally operates another device. A joystick is a type of input device which is often utilized to operate gaming programs or graphics programs. A joystick is often used to control a device or a character in a computer software. It is used to operate videogames and may be used to play games designed for gaming platforms or computer games. A joystick is an input device with a pivoting center handle that communicates the angle and direction to the device it is controlling. It helps to engage with your games and has several real-world applications.

Two negative reviews and no positive reviews is enough to consider the website to have a negative reputation.

Answers

Two negative reviews and no positive reviews is enough to consider the website to have a negative reputation: False.

What is reputation?

In Computer technology, reputation can be defined as a metric which is used to determine the quality of a particular website, especially based on the opinions and ratings by its end users.

In this context, we can infer that two negative reviews and no positive reviews isn't an enough metric to consider a website as having a negative reputation.

Read more on negative reputation here: https://brainly.com/question/2343924

#SPJ1

Choose the expression that belongs in the blank in order to ask the user the question shown.

>>> answer = input(_____)
What is your name? Juan

Answers

Answer:

"Juan"

Explanation:

If this is script, than that should be the correct argument.

After Daniel performed poorly on a test, his teacher advised him to do some self-reflection to figure out how he could get a better score on the next test.

Which actions should Daniel take? Check all that apply.

analyze the content that he knows well
think about whether he should study differently
forget about the test behind him and concentrate on the next one
ask the teacher for some extra help outside of class
go out with his friends to put the poor grade behind him
study the questions he missed and think about why he missed them

Answers

Daniel gives more and more time to self-reflection and improves the mistakes he was doing in the last exam.

What is self-refelection?

Reflecting on oneself is similar to gazing in a mirror and reporting what you see. It is a method of evaluating your work habits, study style, and self. To think about something is the definition of reflection, given simply.

When Daniel didn't do well on an exam, his teacher suggested that he think about his performance to see how he may perform better on the upcoming test.

Examine the material he is familiar with. Consider whether he needs to change his study strategy. Request extra assistance from the instructor outside of class.

Examine the questions he didn't get right and consider why. Self-reflection is the process of assessing one's performance to identify any problem areas that require improvement.

Hence, daniel gives more and more time to self-reflection and improves the mistakes he was doing in the last exam.

To learn more about self-reflection refer;

https://brainly.com/question/14754364

#SPJ1

Answer:

Explanation:

a analyze the content that he knows well

b think about whether he should study differently

d ask the teacher for some extra help outside of class

f study the questions he missed and think about why he missed them

1.- Make a program that loops and perform powers of 5 on each loop.
In each lap the operator is asked IF YOU WISH TO CONTINUE (1 or 0) if the operator enters a zero it will no longer continue to spin. IN CODE C++

Answers

A program that loops and performs powers of 5 on each loop.In each lap the operator is asked IN CODE C++ the C++ Program for the given hassle announcement is as follows:#include the use of namespace std.

What is the energy of a variety of?

The energy of a variety of says how usually to apply the range in a multiplication. Powers also are known as Exponents or Indices. For example, eight^2 might be known as “eight to the energy 2” or “eight to the second one energy”, or simply “eight square.

C++ Program for the given hassle announcement is as follows:#include the use of namespace std;int main() > base;cout << "nEnter the exponent: ";     //asks the user for keyboard input for exponent cin>>exponent;  for (int i = 1; i <=exponent; i++)    //iterate {through|thru|via">via 1 until exponent {       num=num*base; //base is multiplied (e.g. 2*2*2.....n) until n, wherein n is exponent    } cout <<"n"<strength of "<go back 0;}Sample Output:Stdin Inputs

Read more about the loops :

https://brainly.com/question/26497128

#SPJ1

Other Questions
Draw abox-and-whisker plot for the set of data.27, 35, 44, 51, 52, 54, 56, 69, 69, 79, 80, 100, 100a.b.C.d.0510 15 20 25 30 35 40 45 50 55 60 65 7005 10 15 20 25 30 35 4045 50-55HHH05#20 5 10 15 20 25 30 35 40 45 50 5560 65 7060 65 7010 15 20 25 30 35 40 45 50 55 60 65 7075 80 85 9075 80 85 90757595 10080 85 9095 10080 85 90 95 10095 100 23 4 Which expression is equivalent to (- 2 1/4)/(- 2/3) ? (d) Two alarm clocks are set to ring at intervals of 42 minutes and 56 minutes respectively. If the alarm clocks ring together at 0830, at what time will they next ring together again? A financial services company with insurance, investments, mortgages, and banking divisions is best characterized as having aMultiple Choicefunctional design.product structure.geographic structure.horizontal design. Samantha opened a tin of white paint. The paint consisted of a liquid and particles of titanium dioxide that are insoluble in the liquid.The paint had separated into two layers What type of substance in the titanium dioxide Dr. Penningworth informs Shandra that the patient has had the cyst for asignificant amount of time and would like to send a sample, which will be collectedduring the procedure, to the laboratory. What type of sample will likely be collected,and why would the physician want to send it to the laboratory for testing? Explain (in at least 2-3 sentences) one way in which a writer can begin a story incorrectly. Why do we see each moon phaseonly about once a month?Choose 1 answer:AIt takes about 27 days for themoon to rotate on its axis once.BIt takes about 27 days for themoon to orbit Earth once.It takes about 27 days for themoon to orbit the sun once. Which of the following were issues in the 1800 campaign? Check all of the boxes that apply.the Alien and Sedition Actssupport for Spainthe increase in the federal governments powerviews on religiontaxation without representation Humans and birds are bipeds.WWhat does biped mean?O Having two feetO Having ten fingersO Having 32 teeth write an essay on "a healthy life is a happy life"( not less than 200 words Which example is most likely a modernist work of literature? a. a short story about the everyday fears of a normal person b. an epic poem about battles between kings and gods c. a lyric poem about the beauty of america's natural forests d. a novel about the dangers of scientific advancement Match the careers with the career clusters. Pls help! Answer the question in the pic. I will give five stars, thanks, and brainliest!*20 POINTS* What is the circumference of a circle with a diameter of 5 feet? Use 3.14 forTT. A glider with a mass of 2 kg is moving rightward at 1 m/s. A second glider, with a mass of 3 kg, is also moving rightward, at 5 m/s. After the two gliders collide, the first glider is moving rightward at 2 m/s. What is the velocity of the second glider after the collision find the value of xa) 5b) 35c) 3d) 7 Alex Meir recently won a lottery and has the option of receiving one of the following three prizes: (1) $90,000 cash immediately, (2) $35,000 cash immediately and a six-period annuity of $9,400 beginning one year from today, or (3) a six-period annuity of $17,700 beginning one year from today. (FV of $1, PV of $1, FVA of $1, PVA of $1, FVAD of $1 and PVAD of $1) (Use appropriate factor(s) from the tables provided.)1. Assuming an interest rate of 5%, determine the present value for the above options. Which option should Alex choose?2. The Weimer Corporation wants to accumulate a sum of money to repay certain debts due on December 31, 2030. Weimer will make annual deposits of $180,000 into a special bank account at the end of each of 10 years beginning December 31, 2021. Assuming that the bank account pays 6% interest compounded annually, what will be the fund balance after the last payment is made on December 31, 2030? Lines CD and DE are tangent to circle A, as shown below:Lines CD and DE are tangent to circle A and intersect at point D. Arc CE measures 110 degrees. Point B lies on circle A.If arc CE is 110, what is the measure of CDE? 55 70 100 Marissa is testing a hypothesis through experimentation. She believes that immersing ocean coral in carbonic acid will slow the corals growth. Which of these actions will prevent Marissa from introducing confounding variables into her experiment?A. She releases cement particles into a random number of the coral samples.B. She uses three different types of coral to establish her dependent variables.C. She treats the coral samples identically with varying levels of carbonic acid.D. She obtains her coral samples from coral reefs surrounding different continents.