Question 8: [15 points) array x of size N, and returns the sum of the array elements, and updates the reference Write a function int Sum Product (int m[], int n, int& prod); that accepts an integer (both limits included). variable prod with the product of the array elements having values between 1 and 100 You also need to write the main to test the working of the function.

Answers

Answer 1

Here's the implementation of the `SumProduct` function in C++ that calculates the sum and product of the array elements within a specified range, and updates the reference variable `prod` with the product value. Additionally, I've included a `main` function to test the functionality:

```cpp

#include <iostream>

int SumProduct(int m[], int n, int& prod) {

   int sum = 0;

   prod = 1;

   for (int i = 0; i < n; i++) {

       if (m[i] >= 1 && m[i] <= 100) {

           sum += m[i];

           prod *= m[i];

       }

   }

   return sum;

}

int main() {

   const int N = 5;

   int arr[N] = {10, 5, 20, 3, 50};

   int product;

   int sum = SumProduct(arr, N, product);

   std::cout << "Sum: " << sum << std::endl;

   std::cout << "Product: " << product << std::endl;

   return 0;

}

```

In this example, the `SumProduct` function takes an array `m[]` of size `n` and a reference variable `prod` as arguments. It initializes `sum` as 0 and `prod` as 1. The function iterates over the elements of the array and checks if the element is within the range of 1 to 100. If so, it adds the element to the `sum` and multiplies it with the `prod`. Finally, it returns the `sum`.

The `main` function initializes an array `arr` with some values and calls the `SumProduct` function to calculate the sum and product. The result is then printed on the console.

Note: Remember to compile and run the code to see the output.

Learn more about product value here:

https://brainly.com/question/15615126

#SPJ11


Related Questions

What is the first step necessary for initiating the visual transduction cascade in rods?.

Answers

'Capturing a photon by isomerization and rhodopsin of retinal' is the first step necessary for initiating the visual transduction cascade in rods.

Visual transduction refers to the process in the eye where absorption of light in the 'retina' is translated into electrical signals that then reach the brain. It is correct to state that visual transduction is the photochemical reaction that takes place when light or photon is converted to an electric signal in the retina. The visual pigment in the rods, called rhodopsin, is a membrane protein placed in the outer segments of the rods.

When initiating the visual transduction cascade in rods the first vital step is to capture a photon by isomerization and rhodopsin of retinal'.

You can leran more about visual transduction at

https://brainly.com/question/13798113

#SPJ4

fused switches are available in ratings of up to___amperes in both 250 and 600 volts. a. 400 b. 600 c. 4000 d. 6000

Answers

Fused switches are available in ratings of up to 600 amperes in both 250 and 600 volts. Therefore, the answer is b. 600.

Fused switches are electrical devices that are designed to provide both overcurrent protection and a means for manually disconnecting a circuit. These switches typically consist of a switch mechanism and one or more fuses that are installed in series with the circuit. Fused switches are commonly used in industrial and commercial applications to protect motors, lighting circuits, and other electrical equipment from overcurrent conditions. They are available in a range of current ratings and voltage levels, depending on the specific application requirements. The maximum current rating of a fused switch refers to the highest current level that the switch is capable of safely interrupting. In this case, fused switches are available in ratings of up to 600 amperes, which means that they can handle circuits with current levels up to 600 amps. The voltage rating of a fused switch, on the other hand, refers to the highest voltage level that the switch is designed to safely handle. Fused switches are available in both 250 and 600 volts, which means that they can be used in applications with voltage levels up to those values. In summary, fused switches are available in ratings of up to 600 amperes in both 250 and 600 volts, making them suitable for a wide range of industrial and commercial applications.

Learn more about volts here:

https://brainly.com/question/28675147

#SPJ11

Please help me answer this engineering question

Please help me answer this engineering question

Answers

https://www.bartleby.com/solution-answer/chapter-26-problem-5sq-electric-motor-control-10th-edition/9781133702818/what-is-meant-by-the-low-or-poor-starting-economy-of-a-primary-resistor-starter/fb257667-8e6f-11e9-8385-02ee952b546e this website has 26 solutions maybe this will help

Two stepped bar is supported at both ends.At the join point of two segments,the force F is applied(downwards).Calculate reactive forces R1 and R3 at the supports.What is value of absolute maximal stress?
Choose one answer nearest your result.

given= d1=10mm d2=20mm L1=20mm L2=10mm E=200GPa F=20kN

Two stepped bar is supported at both ends.At the join point of two segments,the force F is applied(downwards).Calculate

Answers

Answer:

F=200kN

Explanation:

A particular brand of paint covers 340 square feet per gallon . Write a program in C++ to determine and report approximately how many gallons of paint will be needed to paint two coats on a wooden fence that is 6 feet high and 100 feet long .

Answers

Answer:

#include <iostream>

using namespace std;

// named constant to give mnemonic name to "magic number"

const float SqFtPerGal = 350.0f;

// the function main() is always the entry point of the application

int main()

{

float length, width, area, paint; // to hold user values and results

// prompt user for length and width of wall

cout << "Enter length of wall : " << flush;

cin >> length;

cout << "Enter width of wall : " << flush;

cin >> width;

// calculate area and amount of paint needed

area = length * width;

paint = area / SqFtPerGal;

// output results with reasonable text

cout << "You need " << paint << " gallons of paint to cover "

<< area << " square feet of wall." << endl;

// program stops executing when it returns from main(), 0 means O.K.

return 0;

}

Explanation:

How do birds achieve take-off, gliding, dive, etc.? How do they modify their body shape?

Answers

Birds have a lot of different bones in there body that allows them to change the curvature of there wings making them able to become bullet shaped or or u shaped PLEASE MARK BRAINLIEST

1. What most commonly joins the structural panels of
a unibody?
(A) Spot welds
(B) Adhesives
(C) Bolts
(DJ Nuts

Answers

Answer:

a

Explanation:

becasue it is

specimen m (1008 steel) has an astm grain size number of 8, specimen n (1008 steel) has an astm grain size number of 7, specimen p (1008 steel) has an astm grain size number of 5, specimen q (1008 steel) has an astm grain size number of 4 . which specimen has larger number of grains?

Answers

Specimen P (1008 steel) has a larger number of grains compared to the other specimens.

How does the ASTM grain size number relate to the number of grains?

The ASTM grain size number provides a measure of the average grain size in a metal specimen. The higher the grain size number, the smaller the average grain size. In other words, a larger grain size number corresponds to a smaller number of grains in a given area. Therefore, since Specimen P has the lowest ASTM grain size number of 4, it indicates a larger number of grains compared to Specimen Q (grain size number 4), Specimen N (grain size number 7), and Specimen M (grain size number 8).

Learn more about grains

brainly.com/question/32828348

#SPJ11

A 75-kg piano is hosted on a crane and delivered throughout the window of a 6th story apartment (20 meters above ground). What is the potential energy of the piano?

Answers

Answer:

  14,700 J

Explanation:

PE = Mgh = (75 kg)(9.8 m/s²)(20 m) = 14,700 J

The chart describes four people’s credit histories.

Creditworthy Criteria
Name
Description of Credit History
Ellie
Has more debt than earnings
Collin
Pays only some of his bills every month
Jacob
Has made three late payments in the past year
Eesha
Pays more than the minimum payment each month

Which person is creditworthy?

Answers

Answer:

D). Eesha  pays more than the minimum payment each month.

Explanation:

Eesha would be considered most creditworthy among the given persons as she not only pays on time but also repays more than the minimum amount assigned to pay each month. In order to test the creditworthiness of an individual, his ontime debt paying capability is tested at first followed by the past credit repayment history and the credit score. Except Eesha, all the given candidates have failed to make timely repayment of their debts and hence, they cannot be considered creditworthy.


What are the limitations of portable computers?​

Answers

You can read about it here https://www.cornellcollege.edu/information-technology/policies/technology-policies/limitations-of-laptops.shtml

The US navy recently funded the development of submersible drones to investigate shipwrecks located
on the ocean floor of the Marianas Trench. In this region of the world the ocean floor is located about
7.0 miles below sea level. Calculate the pressure a submersible drone would need to withstand 7 miles
below the surface of the ocean.

Answers

The pressure a submersible drone would need to withstand 7 miles is given to be 114.49 MPA

How to solve for the pressure of the submersible drone

Wer have P = rho x H

Where Rho s is the Sp x the weight of the sea water

= 10163 . 16n/m²

We are to proceed to find the value of H

H = 7. 0 miles below sea water

= 11265.408m

P = 11265.408m x 10163 . 16n/m²

= 114,492.144

= 114.49 MPA

Hence we can say that  the pressure of the submersible drone should be equal to 114.49 MPA

Read more on pressure here:

https://brainly.com/question/28012687

#SPJ1

technician a says that you should clean the caliper mountings and slides/pins using equipment/procedures for dealing with asbestos/hazardous dust. technician b says that once the dust is taken care of, you may need to use a brake cleaning solvent to clean the components further. who is correct? group of answer choices technician a technician b both technician a and technician b neither technician a nor technician b

Answers

Technician B says that once the dust is gone, you might need to clean the parts with a brake cleaning solvent. Both are correct.

What exactly are caliper mountings?

When working with hazardous materials like asbestos dust, it's critical to follow proper safety procedures. To reduce the likelihood of being exposed, this might entail wearing protective gear like gloves and respirators and adhering to specific cleaning procedures.

As a result, the caliper mountings and slides/pins may require further cleaning with a brake cleaning solvent after the hazardous dust has been appropriately removed. When using any cleaning solvent, it is essential to follow the directions provided by the manufacturer and to exercise caution.

To learn more about caliper visit :

https://brainly.com/question/13522392

#SPJ4

a ______ is a controller that maintains a constant air pressure in a duct or building area

Answers

Answer:

a pressure regulator is a controller that maintains a constant air pressure in a duct or building area

repeat problem 6.6 using the gauss–seidel iterative method. which method converges more rapidly?

Answers

Generally, the Gauss-Seidel method converges faster than the Jacobi method for most problems because it uses the most up-to-date values during each iteration.

How to solve

Gauss-Seidel Iterative Method:

Let's rewrite the given system of linear equations:

x1 = 0.25 + 0.25x2 + 0.25x3

x2 = 0.5 - 0.5x1 + 0.25x3

x3 = 1.0 + 0.25x1 - 0.5x2

Now, let's apply the Gauss-Seidel iterative method with an initial guess of x1 = x2 = x3 = 0:

Iteration 1:

x1 = 0.25 + 0.25(0) + 0.25(0) = 0.25

x2 = 0.5 - 0.5(0.25) + 0.25(0) = 0.375

x3 = 1.0 + 0.25(0.25) - 0.5(0.375) = 0.9375

Iteration 2:

x1 = 0.25 + 0.25(0.375) + 0.25(0.9375) = 0.34375

x2 = 0.5 - 0.5(0.34375) + 0.25(0.9375) = 0.44921875

x3 = 1.0 + 0.25(0.34375) - 0.5(0.44921875) = 0.962890625

We can continue the iterations until the solutions converge to the desired level of accuracy. For comparison purposes, we'll stop at iteration 2.

Convergence Comparison:

To compare the convergence rates, let's recall the results from the Jacobi method (assuming it has been solved previously). Here, we present a hypothetical result after two iterations:

Iteration 2 (Jacobi):

x1 = 0.3125

x2 = 0.4375

x3 = 0.96875

Comparing the results of both methods after two iterations:

Gauss-Seidel:

x1 = 0.34375

x2 = 0.44921875

x3 = 0.962890625

Jacobi:

x1 = 0.3125

x2 = 0.4375

x3 = 0.96875

In this example, the Gauss-Seidel method seems to converge more rapidly than the Jacobi method, as the values are closer to the exact solution.

However, the convergence rate depends on the specific problem and the initial guess.

Generally, the Gauss-Seidel method converges faster than the Jacobi method for most problems because it uses the most up-to-date values during each iteration.

Read more about Gauss-Seidel iterative method here:

https://brainly.com/question/29646182

#SPJ1

Problem 6.6: Solve the following system of linear equations using the Gauss-Seidel iterative method:

x1 - 0.25x2 - 0.25x3 = 0.25

0.5x1 + x2 - 0.25x3 = 0.5

-0.25x1 + 0.5x2 + x3 = 1.0

Additionally, determine which method, Gauss-Seidel or Jacobi, converges more rapidly.

What does Faraday's law of induction states?​

Answers

Explanation:

This relationship, known as Faraday's law of induction (to distinguish it from his laws of electrolysis), states that the magnitude of the emf induced in a circuit is proportional to the rate of change of the magnetic flux that cuts across the circuit.

Can someone tell me what car year and model this is please

Can someone tell me what car year and model this is please

Answers

Answer:

i think 1844

Explanation:

2005 BMW 5 Series , that should be it

What kind of plan or development of road can be done to avoid traffic?​

Answers

Answer: Breakdown Lanes

Reason: With breakdown lanes when a car needs to stop it can go to the backdown lane and fix its issue.

What is between compare and contrast project control in an agile environment and in a traditional environment.

Answers

In an Agile environment, project control is more flexible and adaptive compared to traditional project management. Agile methodologies focus on collaboration, continuous improvement, and responsiveness to change.

The project team is self-organizing and empowered to make decisions, with the product owner providing guidance and direction. Project progress is tracked using metrics such as sprint velocity and burn-down charts, which provide real-time visibility into the project status.

In contrast, traditional project management follows a more structured approach that emphasizes planning, control, and adherence to pre-defined processes. The project manager plays a central role in decision-making and oversees the execution of the project plan. Progress is tracked using milestone-based schedules and Gantt charts, with a focus on meeting deadlines and staying within budget.

Learn more about Agile here:-

https://brainly.com/question/30645690

#SPJ11

Explain what the ancient Romans did to solve the problem in the following scenario.

Situation: In ancient Italy, farmers were experiencing a drought. Rather than move to where the water was, Roman inventors decided to bring the water to the farmers.

Answers

Answer:

They moved fresh water around their vast empire with aqueducts and canals.

Explanation:

a(n) ? is a method of wiring transformers where the windings are divided over several legs of transformer core.

Answers

A shell-type transformer is a method of wiring transformers where the windings are divided over several legs of the transformer core.

This configuration differs from the more common core-type transformer, in which windings are wrapped around a single core leg. In a shell-type transformer, the magnetic circuit is divided into multiple paths, creating a more efficient and stable flux distribution. This design results in improved electrical performance and reduced leakage reactance.

Shell-type transformers are beneficial for applications that require high voltage regulation, such as power distribution and transmission systems. By dividing the windings over several core legs, the transformer achieves a more compact size, better mechanical strength, and a lower likelihood of core saturation. Additionally, the shell-type design provides better heat dissipation and enhanced cooling, prolonging the life of the transformer.

In summary, a shell-type transformer is a method of wiring transformers with windings divided over several legs of the transformer core. This design improves electrical performance, voltage regulation, and heat dissipation while offering a compact and mechanically strong solution for various high-voltage applications.

Learn more about transformers here: https://brainly.com/question/29732336

#SPJ11

Which of the following is true about customer relationship management (CRM)?

A. It eliminates the need to depend on information produced through primary research.

B. Its aim is to directly maximize profit margins.

C. Its aim is to establish cause-effect relationships between marketing strategies and consumption trends.

D. Its aim is to maximize customer loyalty.

Answers

The statement that is true about customer relationship management (CRM) is "Its aim is to maximize customer loyalty."

Option D is the correct option.

CRM stands for customer relationship management.

It is an approach used by organizations to manage their interactions with current and potential customers.

The main aim of CRM is to maximize customer loyalty.

CRM system uses a wide variety of data and tools to automate, manage and synchronize customer service, sales, marketing, and technical support.

It enables an organization to build strong customer relationships and streamline processes by integrating and automating various functions related to customer service, marketing, and sales.

This allows an organization to better understand customer preferences and behaviors, which can be used to improve customer satisfaction and retention.

CRM provides a unified view of customers and automates sales processes, thereby improving productivity and efficiency. It also helps an organization to provide better customer service by giving customers access to their account information and providing personalized support.

CRM data can be used to generate insights into customer behavior and preferences, which can be used to inform marketing strategies.

This can help organizations to target their marketing efforts more effectively and improve the return on investment (ROI) of their marketing campaigns.

To know more about CRM, visit:

https://brainly.com/question/30396413

#SPJ11

A furniture manufacturer instituted a new strategy of producing custom-designed kitchen fittings rather than predesigned fittings. Although the amount of fittings produced by the company fell as the new plan was implemented, management was quick to point out that the custom fittings sold faster (and at a higher profit margin) than the predesigned fittings. What strategy is management using to overcome the pull of past patterns and build momentum in moving toward new patterns?
A) benchmarking
B) celebrating early wins
C) unfreezing
D) behavioral process orientation

Answers

Management uses an unfreezing technique to get past the pull of old patterns and build momentum toward new ones. Unfreezing is the process of establishing a novel manner of conducting business. To overcome challenges and shift in the direction of new patterns, a management strategy based on the unfreezing technique can be put into practice.

Definition of a management strategy example ?

Business control and direction are achieved through the employment of management strategies. Goal-setting and leadership methods are some examples. Organizations are able to perform at their best thanks to these techniques.

The importance of management strategy ?

Strategic management can increase workplace motivation in addition to financial benefits. The effectiveness of an organization can be enhanced by setting realistic goals for employees and integrating them in organizational goals.

To know more about unfreezing visit :-

https://brainly.com/question/3522264

#SPJ4

For H 2

O, determine the specified property at the indicated state. (a) T=140 ∘
C,v=0.5 m 3
/kg. Find p, in bar. (b) p=30MPa,T=120 ∘
C. Find v, in m 3
/kg. (c) p=10MPa,T=500 ∘
C. Find v, in m 3
/kg. (d) T=80 ∘
C,x=0.2. Find p, in bar, and v, in m 3
/kg.

Answers

(a) The pressure of water at T = 140 °C and v = 0.5 m³/kg is approximately X bar.

(b) The specific volume of water at p = 30 MPa and T = 120 °C is approximately Y m³/kg.

(c) The specific volume of water at p = 10 MPa and T = 500 °C is approximately Z m³/kg.

(d) The pressure of water at T = 80 °C and x = 0.2 is approximately W bar, and the specific volume is approximately V m³/kg.

(a) To find the pressure at T = 140 °C and v = 0.5 m³/kg for water, we can refer to the water properties table or use the steam tables. By looking up the values, we find that the pressure is approximately X bar.

(b) At p = 30 MPa and T = 120 °C, we can use the steam tables or water properties table to find the specific volume of water. By referring to the appropriate values, we find that the specific volume is approximately Y m³/kg.

(c) Similarly, at p = 10 MPa and T = 500 °C, we can consult the steam tables or water properties table to determine the specific volume of water. By looking up the values, we find that the specific volume is approximately Z m³/kg.

(d) When T = 80 °C and x = 0.2, we need to determine both the pressure and specific volume. To find the pressure, we can use the steam tables or water properties table, and by referring to the appropriate values, we find that the pressure is approximately W bar. To find the specific volume, we can use the quality (x) value along with the temperature, and by referring to the steam tables or water properties table, we find that the specific volume is approximately V m³/kg.

Learn more about pressure of water.
brainly.com/question/30549514

#SPJ11

the most common connection method for the framework of a house is: gluing staping nailing screwing

Answers

Answer:Nailing

Explanation:I hope

Design a circuit that outputs a 1 when the bit pattern (101) has been applied to input, and 0 otherwise.

Answers

Answer:

  see the attachment

Explanation:

The circuit shown uses Nand and Nor gates to produce the desired logic. The input bits are numbered 0 to 2, right to left.

The logic is ...

  out = ((b2·b0)' + b1)'

  out = b2·b1'·b0

Design a circuit that outputs a 1 when the bit pattern (101) has been applied to input, and 0 otherwise.

if both the ram air input and drain hole of the pitot system become blocked, the indicated airspeed will

Answers

If both the ram air input and drain hole of the pitot system become blocked, the indicated airspeed will: a) increase during a climb.

What is a ram air input?

A ram air input can be defined as an air intake system which is designed and developed to use the dynamic air pressure that is created due to vehicular motion, or ram pressure, in order to increase the static air pressure within the intake manifold of an internal combustion engine of an automobile.

This ultimately implies that, a ram air input allows a greater mass-flow of air through the engine of an automobile, thereby, increasing the engine's power.

In conclusion, indicated airspeed will increase during a climb when both the ram air input and drain hole of the pitot system become blocked.

Read more on pilots here: https://brainly.com/question/10381526

#SPJ1

Complete Question:

If both the ram air input and drain hole of the pitot system become blocked, the indicated airspeed will

a) increase during a climb

b) decrease during a climb

c) remain constant regardless of altitude change

A bomb thrown from a plane flying at a height of 400m moves along the path vector r
= (50 t)i + (4t
2
)j m. where t in sec. The origin is taken as the point from where, the bomb is
released and the +ve Y axis is taken as pointing downwards. Find,
i) Equation of path followed by bomb
ii) Time taken to reach the ground
iii) Horizontal distance traversed by the bomb.
iv) Displacement, velocity and acceleration at t=5sec.
v) Tangential and normal component of acceleration at t=5 sec.

Answers

Answer:

Explanation:

This problem involves projectile motion, and we can use the equations of motion to find the various quantities asked for:

i) Equation of path followed by bomb:

The path of the bomb is given by the vector equation r = (50t)i + (4t^2)j, where i and j are unit vectors in the x and y directions, respectively. We can rewrite this equation in terms of x and y coordinates by substituting i = (1, 0) and j = (0, 1), which gives:

x = 50t

y = 4t^2

Therefore, the equation of the path followed by the bomb is y = (1/100)x^2.

ii) Time taken to reach the ground:

The bomb will reach the ground when its height above the ground (y-coordinate) becomes zero. So we can set y = 0 and solve for t:

0 = 4t^2

t = 0 or t = sqrt(0) = 0

This means the bomb will hit the ground at t = 0 and stay on the ground afterwards.

iii) Horizontal distance traversed by the bomb:

The horizontal distance traversed by the bomb is equal to the displacement in the x-direction, which is given by:

Δx = x(final) - x(initial) = 50t - 50(0) = 50t

At t = 0 (when the bomb hits the ground), Δx = 0. Therefore, the bomb travels a horizontal distance of 50t before hitting the ground.

iv) Displacement, velocity and acceleration at t=5sec:

At t=5sec, we can find the displacement of the bomb by substituting t=5 into the vector equation of the path:

r(5) = (50(5))i + (4(5^2))j = 250i + 100j

Therefore, the displacement of the bomb at t=5sec is 250i + 100j.

To find the velocity and acceleration at t=5sec, we can differentiate the vector equation of the path with respect to time:

v = dr/dt = (50)i + (8t)j

a = d^2r/dt^2 = 0i + 8j

Substituting t=5 into these equations, we get:

v(5) = (50)i + (8(5))j = 50i + 40j

a(5) = 0i + 8j

Therefore, the velocity of the bomb at t=5sec is 50i + 40j, and the acceleration is 8j.

v) Tangential and normal component of acceleration at t=5 sec:

The acceleration at t=5sec is 8j. The tangential component of acceleration is zero, since the velocity vector is purely horizontal at this time. The normal component of acceleration is equal to the magnitude of the acceleration vector, since it is perpendicular to the velocity vector. Therefore, the tangential component of acceleration is zero, and the normal component of acceleration is 8 m/s^2.

What is the hardest part of engineering?

Answers

ANSWER:

Aerospace Engineering. ...

Chemical Engineering. ...

Biomedical Engineering.

EXPLANATION:

This is all i know but ... I hope this helps~

Technician A says that tailor-rolled parts may be used for collision energy managements.

Technician B says that tailor-welded parts are aluminum and steel parts joined together. Who is right?


A Only

B only

Both A and B

Neither A nor B

Answers

The correct answer to your problem is the answers of a and b
Other Questions
m-m-1/2=1-m-2/3Pls help me with this question fast Please help this was due yesterday! In class we will examine extremism in social movements and the effect extremism has on both the movement and society. This exercise is intended to stimulate discussion about extremism but also examine how to define and recognize extremism as it relates to Social Movements. In a essay format. in points what pricing strategy is Disney using for PremierAccess? Is this an appropriate strategy? You have decided that you are ready to start a fitness program. Why is it important to set short-term and long-term goals? How will you keep track of your progress toward reaching your goals? Why is it important to reflect on your progress? a client has a diagnosis of right-sided heart failure. which body organ should the nurse assess regularly? The following question has two parts. First answer question #36, then answer #37. Given the conditions in the headline above, what is likely to happen to spending in the economy?A. Spending would stagnate because income is falling.B. Spending would increase because prices are rising.C. Spending would decrease because income is falling.D. Spending would decrease because income is rising. Select two consequences resulting from the choice you selected in question number #36. A. Businesses will cut outputB. Imports will increaseC. Reduction of gross domestic productD. Supply and demand will both increase sommeone p.l.e.a.s.e help me answer this i really really need help- Laurie is trying to stay within 10 feet of her current diving depth of -30 feet (with regard to sea level) so that the light is still good but she can be close to the sea life during her scuba dive Which two equations can be used to find the minimum and maximum depths Laurie wants to stay between? What is the difference between 0.5 and .12?check my answer is .38 What fractions does 40% represent? PLS HELP WILL MARK BRAINLIEST Can you please help me figure out this math problem so that I can move forward with the rest of them from here on out What is the solution to the systems of equations below? Which is bigger 1.30 or 1.3 what is(are) the advantage(s) of there being a low blood pressure in the pulmonary circuit? check all that apply. check all that apply For every 2 apples in Kalis orchard, there are 4 pears. In Sams orchard, there are 10 pears for every 5 apples. If the number of pears is proportional to the number of apples, what is the constant of proportionality We dont all have the same ability to recall information (life experiences, facts, skills, etc.). One persons ability to remember something might even vary throughout their life. What might account for those differences? Identify and describe three variables (reasons) that can interfere with our ability to remember/recall information. Gente me ajuda no projeto de matemtica quanto 3743250=??? Institutions that focus on the specific skills and training required to enter certain professions are called __________ schools.A.prepB.alternativeC.vocationalD.developmental