Books
Study
Career
CheggMate
For educators
Help
Sign in
Find solutions for your homework
Find solutions for your homework
Search
engineeringcomputer sciencecomputer science questions and answers#include #include <list> #include <vector> #include <fstream> #include <algorithm> #include <random> #include <cmath> // for sqrt /* lab: computing stats with lambda functions todo: open and load the values from the file into a list container iterate through the container using for_each compute and print
This problem has been solved!
You'll get a detailed solution from a subject matter expert that helps you learn core concepts.
See Answer
Question: #Include #Include &Lt;List&Gt; #Include &Lt;Vector&Gt; #Include &Lt;Fstream&Gt; #Include &Lt;Algorithm&Gt; #Include &Lt;Random&Gt; #Include &Lt;Cmath&Gt; // For Sqrt /* Lab: Computing Stats With Lambda Functions TODO: Open And Load The Values From The File Into A List Container Iterate Through The Container Using For_each Compute And Print
#include
#include
#include
#include
#include
#include
#include // for sqrt
/*
Lab: Computing Stats with Lambda Functions
TODO:
Open and load the values from the file into a list container
Iterate through the container using for_each
Compute and print out the following statistics using ONLY for_each and "in-line" lambda functions (as arguments to the for_each call)
sum
average (the mean)
median (you can pre-sort the values if you like
statistical variance: sum of the (differences from the mean)^2
print out the values that are prime numbers (tricky!)
*/
using namespace std;
//
// LOAD FILE (written for you)
//
void loadFile(string fileName, list &allValues) {
cout << "loadFile() here...\n";
// filestream variable file
fstream file;
double value;
file.open(fileName); // opening file
cout << "Loading values....";
// extracting words form the file
while (file >> value)
{
allValues.push_back(value);
}
cout << "done" << endl;
cout << "Sorting " << allValues.size() << " values......\n";
allValues.sort(); // sort ascending (default) using the list sort() method
}
int main() {
cout << "Lambda Stats\n";
list allValues; //
loadFile("values.txt", allValues); // load our list container "allValues" from the file using the function written above
// print using a lambda and for_each
for_each(allValues.begin(), allValues.end(),
// TODO: the 3rd argument of for_each() below is our lambda function
[ ]( ) { // print out all values in the allValues list
} // this is the end of our lambda
); // this is the end of the for_each() statement!
cout << endl;
// compute the sum
double sum=0;
for_each(allValues.begin(), allValues.end(),
// TODO: the 3rd argument of for_each() below is our lambda function
[ ]( ) { // sum up all values in the allValues list and store them in sum
} // this is the end of our lambda
); // this is the end of the for_each() statement!
cout << "The sum = " << sum << endl;
// compute total number of items in the vector (it should equal .size())
int total=0;
for_each(allValues.begin(), allValues.end(),
// TODO: the 3rd argument of for_each() below is our lambda function
[ ]( ) { // count the number of items in the allValues container and store in "total"
} // this is the end of our lambda
); // this is the end of the for_each() statement!
cout << "The count = " << total << endl;
double mean = sum/total; // since know the sum and the total from above, we can calculate the average trivially below
cout << "The mean (average) = " << mean << endl;
// compute median
allValues.sort(); // sort ascending, using the sort() method found in the list container
int minValue = 10000000;
int maxValue = 0;
double prev=0;
double median=0;
int …

Answers

Answer 1

The code mentions loading values from a file, sorting the values in ascending order, and computing statistics such as the sum, average, median, and statistical variance using for_each and inline lambda functions.

It appears that you have pasted a portion of C++ code related to computing statistics with lambda functions. The code seems incomplete as it ends abruptly. It seems to be a part of a program that loads values from a file into a list container and performs various calculations and operations on the data using lambda functions.

The code mentions loading values from a file, sorting the values in ascending order, and computing statistics such as the sum, average, median, and statistical variance using for_each and inline lambda functions. It also mentions printing prime numbers from the list of values.

To provide a solution or further assistance, I would need the complete code and a clear description of the specific issue or problem you are facing.

Learn more about variance here

https://brainly.com/question/31341615

#SPJ11


Related Questions

Which of these processes uses a die and a press to form parts?

A) Stamping

B) Tailor-rolling

C) Hydroforming

D) Tailor-welding

Answers

The process of die forming that uses a die and a press to form parts from the given processes is called; C: Hydroforming

What are some of the steps in the die forming operations?

There are different types of die forming in sheet metal operations. Now, Hydroforming is a specialized type of die forming that uses a high pressure hydraulic fluid to press room temperature working material into a die.

Tailor Welding is a process of making welded blanks made from individual sheets of steel of different thickness, strength and even coating that are joined together by the use of laser welding.

Read more about Welding operations at; https://brainly.com/question/9450571

What are the two (2) different design elements of scratch?

Answers

Answer: There is four elements of Scratch. The stage, the sprites, the script and the programming palette.

Explanation:

Two parallel pipelines spaced 2.0 m apart are buried in soil having a thermal conductivity of 0.5 W/m ⋅ K. The pipes have outer diameters of 300 and 200 mm with surface temperatures of 95°C and 5°C, respectively. Estimate the heat transfer rate per unit length between the two pipelines

Answers

The quantity of heat that is transmitted through a material per unit of time is known as the rate of heat flow and is often expressed in watts (joules per second). The heat transfer rate per unit length between the two pipelines spaced 2.0 m apart is 50.67 KJ/m.s.

Heat is a redundant term for the movement of thermal energy caused by thermal non-equilibrium.

The temperature difference between two surfaces divided by their combined thermal resistance represents the rate of heat transmission between them. The idea of thermal resistance is frequently applied in daily life. Its application is restricted to those systems where the rate of heat transmission is constant.

The detailed calculation showing the estimated heat transfer rate per unit length between the two pipelines is attached below.

To learn more on heat transfer, here:

https://brainly.com/question/13433948

#SPJ4  

Two parallel pipelines spaced 2.0 m apart are buried in soil having a thermal conductivity of 0.5 W/m
Two parallel pipelines spaced 2.0 m apart are buried in soil having a thermal conductivity of 0.5 W/m

234567891234567891234567891

Answers

Answer:

234567891234567891234567891 what is this?????

Explanation:

234567891234567891234567891

IS THIS IS A QUESTION

OH DON'T MIND JUST ASKING

BTW

GOOD MORNING/AFTERNOON/EVENING/NIGHT

HOW ARE YOU

HAVE A GREAT DAY AHEAD

PLS MARK ME AS BRAINLIEST

what does kichfoff's currebt law​

Answers

Answer:

Kirchhoff's current law (1st Law) states that the current flowing into a node (or a junction) must be equal to the current flowing out of it

Explanation:

In a four-stroke engine, the piston rises in the cylinder, which triggers the _______ stroke.
intake
compression
exhaust
power

Answers

Answer: It is power stroke

This list gives the lengths of different leaves in centimeters. 7. 5, 9. 5, 9. 0, 8. 0, 7. 5, 8. 5, 7. 5, 8. 5, 9. 5, 8. 5, 9. 0, 9. 5, 8. 0, 9. 5, 8. 0, 9. 0, 9. 0, 9. 0 Create a line plot to display the data. To create a line plot, hover over each number on the number line. Then click and drag up to plot the data

Answers

The line plot would have a number line ranging from 7 to 9.5 with increments of 0.5. There would be data points plotted at 7.5, 9.5, 9.0, 8.0, 8.5, and 9.0, with multiple points at certain values.

The line plot would visually represent the distribution of leaf lengths.

Here is a textual representation of the line plot based on the given data:

7.5    |   X

7.75   |

8.0    |   X

8.25   |

8.5    |   X   X

8.75   |

9.0    |   X   X   X   X

9.25   |

9.5    |   X   X   X

9.75   |

In the line plot, each X represents a data point from the given list. The vertical axis represents the count or frequency of each length, while the horizontal axis represents the range of lengths.

To know more about data click the link below:

brainly.com/question/29610516

#SPJ11

A simple Rankine cycle uses water as the working fluid. The boiler operates at 6000 kPa and the condenser at 50 kPa. At the entrance of the turbine the temperature is 450 deg C. The isentropic efficiency of the turbine is 94 percent, pressure and pump losses are negligible, and the water in the condenser is subcooled by 6.3 degC. The boiler is sized for a mass flow rate of 20 kg/s. Determine the rate at which heat is added in the boiler, the power required to operate the pumps, the net power produced by the cycle, and the thermal efficiency.

Answers

Answer:

the rate at which heat is added in the boiler = 59597.4 kW

the power required to operate the pumps = 122.57 kW

The net power produced by the cycle = 17925 kW.

The thermal efficiency = 30%.

Explanation:

The specific enthalpy of saturated liquid is equal to the enthalpy of the first point which is equal to 314 kJ/ kg.

The second enthalpy is calculated from the pump work. Therefore, the second enthalpy = first enthalpy point + specific volume of water [ the pressure of the boiler - the pressure of the condenser].

The second enthalpy = 314  + 0.00103 [ 6000 - 50 ] = 320.13 kJ/kg.

The specific enthalpy for the third point = 3300 kJ/kg.

Therefore, the rate at which heat is added in the boiler = 20 × [3300 - 320.13] = 59597.4 kW.

The rate at which heat is added in the boiler = 59597.4 kW.

Also, the power required to operate the pumps = 20 × 0.00103 [6000 - 50] = 122.57 kW.

The power produced by the turbine = 20 [ 300 - ( the fourth enthalpy value)].

The fourth enthalpy value = 3300 - 0.94 [ 3300 - 2340] = 2397.6 kJ/kg

Thus, the power produced by the turbine = 20 [ 300 - 2397.6] = 18048 kW.

The power produced by the turbine  =  18048 kW.

The net power produced =  18048  + 122.57 = 17925 kW.

The thermal efficiency = [net power produced] / [the rate at which heat is added in the boiler].

The thermal efficiency = 17925/ 59597.4 = 30%.

What cell type has no membrane-bound organelles, has DNA that is found in an area called the
nucleoid, and is very small?
A. Eukaryotic cell
B. Prokaryotic cell
C. Animal cell
D. Plant cell

Answers

Prokaryotic cell is the correct answer. A good way to remember is Eukaryotic cell is a you cell since that is the kind of cell that makes up your body

Answer:

Prokaryotic cell

Explanation:

Why do pre-construction and design specialists typically take an interdisciplinary approach to their work? O to maximize employability options to draw on a varied creative tool set O to integrate well with other team members to understand the methods of the construction team Sign​

Answers

Answer:

There are a few key benefits to a pre-construction and design specialist taking an interdisciplinary approach:

To maximize employability options. Having exposure to different fields and skills makes a specialist a more versatile and attractive job candidate. They can work across multiple areas of design, planning, architecture and construction.

To draw on a varied creative tool set. Exposure to fields like architecture, engineering, economics, sustainability and more provides many perspectives and solutions to tapping into. This leads to more innovative and well-rounded design thinking.

To integrate well with other team members. Understanding the methods, priorities, constraints and languages of fields like architecture, engineering, planning, and construction allows a specialist to collaborate more effectively. They can translate across disciplines and facilitate joined-up thinking.

To understand constraints and optimally balance priorities. No design or pre-construction problem has limitless options. An interdisciplinary approach helps gain insights into the constraints each field operates under and how to optimize solutions across ecological, economic, functional and other priorities.

To consider impacts holistically. Many impacts, like environmental sustainability, cost efficiency and user experience, span multiple disciplines. An interdisciplinary mindset is needed to evaluate options based on overall impact, not just impacts within one area of focus.

Of these options, I believe "To integrate well with other team members" is the strongest summary of why an interdisciplinary approach is so valuable for this type of specialist role. Understanding other fields in depth helps in collaborating, communicating clearly, addressing concerns proactively and finding optimal compromise - all of which are key to successfully interweaving different areas of expertise on a team.

Explanation:

And blank is a person who acts as an agent between two different groups, often result in conference

Answers

Answer:

mediator

Explanation:

A "mediator" has an important role of bridging the communication between parties/groups. He acts as a facilitator in order to hasten the process of making decisions or coming up with conflict resolutions in a timely manner. He does this by setting a schedule for the parties to meet–often resulting to a conference. This will allow each side of the party to voice out their opinion regarding a common concern. Such process is deemed to be a "cost-effective" way of handling matters/issues.

g you are asked to develop a welding procedure for 4140 sheet that has previously been heat-treated to a tempered tmp1 condition. obviously, you would like to ensure that the properties of the weld nugget are nominally equivalent to the base material. would you recommend a liquid-based welding approach (e.g., tungsten inert gas welding) or a solid-state welding approach (e.g., friction stir welding)? justify your answer by considering what would happen to the microstructure of the material, and consequently the properties, using both welding approaches. does your answer depend upon the size and geometry of the part? if so, explain.

Answers

I recommend a solid-state welding approach, specifically friction stir welding, for 4140 sheet in a tempered TMP1 condition.

In liquid-based welding (e.g., Tungsten Inert Gas Welding), the material is melted and then solidified, potentially causing changes to the microstructure and affecting the properties of the heat-treated 4140 sheet. On the other hand, solid-state welding (e.g., Friction Stir Welding) involves no melting, and therefore preserves the original microstructure, maintaining the properties of the base material.

The choice between the two welding methods may depend on the size and geometry of the part. Larger or more complex parts may require alternative approaches to ensure proper welding and minimal distortion. Overall, considering the microstructure and properties of the material, friction stir welding is the more suitable option for a heat-treated 4140 sheet.

To know more about solid-state welding visit:

brainly.com/question/31414873

#SPJ11

the term applied to the chemistry of the body​

Answers

Answer:

Biochemistry

Explanation:

Hope this helps :)

Answer:

Biochemistry

Have an amazing day!

It is okay to speed 7-10 mph over the posted speed limit.
The police cannot write speeding tickets for that.

Answers

Answer:

it is okay depending on how u drive

could you put your sparkplug in the steering wheel and it still works
A. no
B. yes
C. do not care
D. it really doesn't matter

Answers

Answer:

a

Explanation:

Describe the blade design for a wind turbine that you would choose. Why did you choose this design?

Answers

Answer: aerofoil type blades

Explanation: they are more difficult to make but offer better performance and higher rotational speeds making them ideal for electrical energy generation.

If a blender uses 110 volts and 20 amperes how many watts is it using?

If a blender uses 110 volts and 20 amperes how many watts is it using?

Answers

Answer:

2200 watts

Explanation:

# of Watts = Volts × Amps

# of Watts = 110 × 20# of Watts = 2200 watts

Have a lovely rest of your day/night, and good luck with your assignments! ♡

Which alpha-numeric designator, systematically assigned at the time of manufacture, identifies the manufacturer, month, year, location, and batch?

Answers

An alpha-numeric designator which is systematically assigned at the time of manufacture, so as to identify the manufacturer, month, year, location, and batch is referred to as lot number.

What is a product?

A product can be defined as any physical object (tangible item) that is typically produced by a manufacturer so as to satisfy and meet the demands, needs or wants of every customer. Also, some examples of a product include the following:

RefrigeratorTelevisionMicrowave ovenPencilSmartphoneComputerPerfume

What is lot number?

A lot number can be defined as an alpha-numeric designator which is systematically designed and assigned at the time of manufacture, so as to identify the manufacturer, month, year, location, and batch.

Read more on products here: brainly.com/question/14308690

#SPJ1

In flowing from section (1) to section (2) along an open channel, the water depth decreases by a factor of two and the Froude number changes from a subcritical value of 0.4 to a supercritical value of 2.5. Determine the channel width at (2) if it is 13 ft wide at (1).

Answers

Answer:

channel width = 2.621 ft

Explanation:

Given data :

Decreasing Factor = 2

subcritical value = 0.4

super critical value = 2.5

width = 13 ft

attached below is a detailed solution and

In flowing from section (1) to section (2) along an open channel, the water depth decreases by a factor

What is the basic requirement of measurements?

Answers

The basic requirement of measurements is to have a standard or reference point against which to compare the quantity being measured. This standard or reference point should be well-defined and stable, and the measurement process should be repeatable and consistent. Additionally, it is important to ensure that the measurement equipment is calibrated and in good working condition.

Answer:

The most basic requirement for measurements is the presence of a standard or reference point against which the quantity being measured can be compared. The measurement process should be repeatable and consistent, and the standard or reference point should be well-defined and stable. Furthermore, ensure that the measurement equipment is calibrated and in good working order.

Explanation:

A company wants to develop audio speakers using an inexpensive type of plastic that has a very high quality of sound output. Which customers would most likely give a high evaluation of this product?

Answers

Answer:A

Explanation:

Those who want to save money and will use the product for only a few years

Answer:

THE ANSWER is A - those who want to save money and will use the product for only a few years

Explanation: Got it right on edg 2021

True or false It is legal to pass in Florida when approaching within 100 feet of or traversing any railroad crossing grade croead

Answers

That is a false statement.

Hey guys can anyone list chemical engineering advancement that has been discovered within the past 20 years

Answers

Top 10 Emerging Technologies in Chemistry
Nanopesticides. The world population keeps growing. ...
Enantio selective organocatalysis. ...
Solid-state batteries. ...
Flow Chemistry. ...
Porous material for Water Harvesting. ...
Directed evolution of selective enzymes. ...
From plastics to monomers. ...

A homeowner consumes 260 kWh of energy in July when the family is on vacation most of the time. Determine the average cost per kWh for the month using the following residential rate schedule: Base monthly charge of $10.00. First 100 kWh per month at 16 cents/kWh. Next 200 kWh per month at 10 cents/kWh. Over 300 kWh per month at 6 cents/kWh.

Answers

Answer:

16.2 cents

Explanation:

Given that a homeowner consumes 260 kWh of energy in July when the family is on vacation most of the time.

Where Base monthly charge of $10.00. First 100 kWh per month at 16 cents/kWh. Next 200 kWh per month at 10 cents/kWh. Over 300 kWh per month at 6 cents/kWh.

For the first 100 kWh:

16 cent × 100 = 1600 cents = 16 dollars

Since 1 dollar = 100 cents

For the remaining energy:

260 - 100 = 160 kwh

10 cents × 160 = 1600 cents = 16 dollars

The total cost = 10 + 16 + 16 = 42 dollars

Note that the base monthly of 10 dollars is added.

The cost of 260 kWh of energy consumption in July is 42 dollars

To determine the average cost per kWh for the month of July, divide the total cost by the total energy consumed.

That is, 42 / 260 = 0.1615 dollars

Convert it to cents by multiplying the result by 100.

0.1615 × 100 = 16.15 cents

Approximately 16.2 cents

Please help I need by today !!

What is the purpose of an engineering notebook ?

What is the purpose of a portfolio?

Answers

the purpose of an engineering notebook is to support documented work that could potentially be patentable. hope you found this answer helpful!

QUESTION 7

Technician A says both OEM and TCMC brake pad kits come with new shims.

Technician B says TCMC products have a 12-digit part number instead of the traditional 10 digits.

Who is right?

Select the correct option and click NEXT

A only

B only

A

Both A and B

Neither A nor B

Answers

Answer:

Explanation:

Both a  and B

In these two statements by Technician A and Technician B, C. Both A and B are correct.

OEM means Original Equipment Manufacturer, while TCMC means Toyota Complete Maintenance Care. OEM brake pad kits come with new shims as TCMC brake pad kits.

Traditional part numbers bear 10-digits, but TCMC products bear 12-digit part numbers.

Thus, we can conclude from the statements by Technician A and Technician B that C. Both Technician A and Technician B are correct.

Learn more about maintenance processes with the original equipment manufacturer  and TCMC parts here: https://brainly.com/question/4789600

how do scientists learn about the layers deep inside earth

Answers

Scientists use a variety of methods to learn about the layers deep inside Earth. One way is by studying seismic waves, which are waves of energy that travel through the Earth's interior during earthquakes.

By analyzing how seismic waves behave as they pass through different layers of the Earth, scientists can infer the composition and properties of each layer. Another way is by examining rocks and minerals that have been brought to the surface by volcanic activity or mountain building. By analyzing the composition of these rocks, scientists can learn about the deeper layers from which they originated. Additionally, scientists use computer models and simulations to study the behavior and composition of the Earth's interior.

To know more about earthquakes click here:

brainly.com/question/29500066

#SPJ4


What does hydraulic force provide in a braking system?
Power
Heat dissipation
Contact surface
Pressure

Answers

Answer:

4 or D pressure

Explanation:

A hydraulic braking system transmits brake-pedal force to the wheel brakes through pressurized fluid, converting the fluid pressure into useful work of braking at the wheels.

Answer:

pressure is the correct answer...

Explanation:

mark me brainliest

“We’re late for homeroom,” said Bonnie, surprised to hear herself say “we.” “EARL is a tool, Bonnie’s mother kept reminding her, not a friend or a puppy. ‘Don’t anthropomorphize it, honey,’ Bonnie’s mom said one night after she found Bonnie dancing around her bedroom with the metal contraption. ‘It’s a walking blender. Never forget that.”

QUESTION: What does, "Anthropomorphize" means in the sentences above?
(A) It means to program a robot so that it acts in a robotic or unnatural way?
(B) Or it means to give human characteristics to an object or animal?
(C) To make a human act more like an animal and less of a human?
(D) Or to make a human act more like an animal and less of a human?

Answer correctly
Will give Brainliest, a THX, friend request, and will rate ur answer

Answers

Answer:

Hi there

Your answer is:

B.

Explanation:

The "metal contraption", as the text goes on to say, is treated like a friend to Bonnie. Her mom comments on this by contrasting the metal contraption to a puppy.

Hope this helps

B. Or it means to give human characteristics to an object or animal.

Because tires do not come perfectly round and balanced, most tire manufacturers indicate
the tire's highest point with a dot and the tire's lightest point with a dot.

Answers

I'm not sure if this is a question to answer or...I dont know lol. Sorry if I couldn't answer this but yeah-

Other Questions
identify at least two publiclyaccessible datasets from the same region that are consistent acrossa meaningful dimension. The magnetic field lines produced by a straight wire with a current entering the paper are:a. in the parallel direction of the currentb. parallel but in the opposite direction to the currentc. exit the wire in a radially outward directiond. in concentric circles clockwise around the wireF. in concentric circles counterclockwise around the wire Why does the government make budgets? if the cap is left off a bottle of a drying agent such as anhydrous na2so4 for a long time, what will happen? Suppose the federal reserve sells 25$ billion worth of government securities. If the required reserve ratio is 10% the maximum decrease in the money supply is what macromolecule is made from the instructions contained in a typical gene? Which of the following causes spontaneous episodes of vertigo?4 pointsCataractGlaucomaMeniere's DiseaseOtitis Media Erin had 55 stuffed bears. She took out her 7 favorite and equally divided the rest among her 3 sisters. How many bears did each sister get? 75 year-old male patient had a recent history of an ischaemic stroke. The patient remained morbid with intermittent episodes of sudden confusion, inability to communicate, visual impairment and severe headache, visual impairment, cerebral pain and loss of R upper limb functionality. 06.07.22 the patient presented at his GP with suspected pneumonia and was treated with amoxycillinizlavulanic acid + ciprofloxacin. 09/07/22 Subsequently he deteriorated and was admitted into ICU. The patient was commenced empirically on cefotaxime, amoxicilling and metronidazole. On 10.07. 22 The patient became acutely febrile (39oC), tachycardic (95/min) with and subsequently into refractory hypovolaemia with a systolic blood pressure of 75 mmHg and diastolic of 48 mmHg. The patient became comatose. The patient subsequently died. QN.1. What is the differential diagnosis in patient 2 with supporting reasons. Please reference the source. QN.2. What is the differential diagnosis in patient 2 give supporting reasons. Please reference the source. if a = 5, then a2= what is the answer For which values of x does the following series converge? And, for those x for which the series converges, what is the sum of the series?_(n=1)^[infinity](cos^n (x))/2^n .Warning: Careful, we start with n = 1 and not n = 0. what is the final velocity of a hoop that rolls without slipping down a 7.0-m-high hill, starting from rest? At a concession stand, a pickle and two bags of chips costs a total of $3.25. Three pickles and four bags of chips costs a total of $7.25. To determine the cost of one pickle, Kevin is writing a system of equations. His first equation is shown below. Which of the following could be the second equation in his system of equations? Question 7 of 10Which matrix multiplication is defined?5A=2314923B =176c= 54 please discuss the Networking website of your choice. Discussthe positives and negatives of networking in person and through awebsite. Include any opinions or experiences you have aboutnetworking. Which strategy is Lexi using to avoid conflict on social media if she pauses tothink about what led a commenter to say something angry and hurtful?A. Addressing the conflict offlineB. Avoiding anonymityO C. Remaining self-aware, checking her own emotionsD. Remembering the other user's humanitySUBMIT In 2023. ending inventory is overstated. What is the effect of the error on net income in 2023 and 2024?Net income is overstated in 2023 and 2024.Net incnrne is understatexi in 2023 and overstated in 2024.Net income is overstated in 2023 and understated in 2024,Net incorne is in 2023 and 2024. marcoux thinks that stakeholder theory is not as bad as some forms of corporate responsibility theory. why? group of answer choices stakeholder theory suggests moral codes that are voluntary, not legally enforced. stakeholder theory still gives some importance to the interests of the larger community. stakeholder theory lets businesses consider the interests of employees and suppliers. stakeholder theory aims to improve capitalism without overthrowing it. stakeholder theory allows businesses to still pursue profit. 1. Escoge la mejor respuesta, segn el contexto.Necesito encontrar unque me ayude con la clase de clculo.peritopesamodanovedad ________ is done in a mechanized way using capital intensive inputs and particularly timely irrigation making maximum use of large tracts of land.a.Intensive Subsistence Farmingb.Plantation Farmingc.Commercial Farmingd.Jhoom Farmingwill give brainliest