1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
alexgriva [62]
3 years ago
14

Write a function called arraySum() that takes two arguments: an integer array and the number of elements in the array. Have the

function return as its result the sum of the elements in the array
Engineering
1 answer:
Oduvanchick [21]3 years ago
5 0

Answer:

//Function is written using C++ Programming Language

// Comments are used for explanatory purpose

// The main method is not included

using namespace std;

// Declare arraySum with two arguments. The first represents the array name while the other

// Represents the number of elements

int arraySum(int arr[], int n)

{

int total = 0; // declare and Initialise total to 0

// Iterate through the array to calculate sum

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

total += arr[i];

}

return total;

}

You might be interested in
The increasing interconnections of peoples and countries around the world is known as ________.
Irina18 [472]
I think it’s rationalization.
Hope this helps
4 0
3 years ago
Read 2 more answers
What is the output of a system with the transfer function s/(s + 3)^2 and subject to a unit step input at time t = 0?
Dominik [7]

Answer:

0

Explanation:

output =transfer function H(s) ×input U(s)

here H(s)=\frac{s}{(s+3)^2}

U(s)=\frac{1}{s} for unit step function

output =H(s)×U(s)

=\frac{s}{(s+3)^2}×\frac{1}{s}

=\frac{1}{(s+3)^2}

taking inverse laplace of output

output=t×e^{-3t}

at t=0 putting the value of t=0 in output

output =0

3 0
3 years ago
A buret is a device designed to precisely dispense liquids. The scale is calibrated in mL with the zero point at the top with nu
kobusy [5.1K]

Answer:

As there was no attached picture, I will explain how to take the measurement of liquids in any buret which you can then apply to the specific question

Explanation:

A buret is a  laboratory apparatus used to precisely measure the volume of liquids (usually alkalise or bases) used in a titration experiment. The standard buret has a capacity of 50 ml  and graduated in 0.1ml though burets with smaller capacities exist.

From the question, your buret is filled to the top (0.00ml) with liquid. It is very important when taking buret readings to place the buret below your eye level so that the bottom meniscus (lower part of the liquid) can be read.

To take the buret reading, note your initial buret reading (in this case 0.00ml) then titrate the liquid base in the buret against the acid by opening the tap located at the bottom of the buret.

When the titration or reaction is complete, note the final reading against the calibration of buret. You can do this by observing the lower meniscus of the liquid remaining in the buret. (Remember to keep the buret at eye level  to avoid parallax error),

The difference between your final buret reading and the initial buret reading gives you the precise volume of liquid used in the reaction.

6 0
3 years ago
Typically each development platform consists of the following components, except:Select one:a.Operating systemb.System softwarec
damaskus [11]

Typically each development platform consists of the following components except compilers and assemblers

  • The platform development simply means the development of the fundamental software which is vital in making hardware work.

  • Operating system: This refers to the low-level software that communicates with the hardware so that other programs can be able to run.

  • System software: This is the software that's designed in order to provide a platform for the other software. Examples include search engines, Microsoft Windows, etc.

  • Compilers and assemblers: Compliers are sued in converting source code to a machine-level language. Assembler is used in converting assembly code to machine code.

  • Hardware platform: This is a set of hardware where the software applications are run.

In conclusion, the correct option is Compilers and assemblers.

Read related link on:

brainly.com/question/21650058

4 0
2 years ago
Part A Engineering stress and strain are calculated using the actual cross-sectional area and length of the specimen. True or fa
Galina-37 [17]

Answer: True

Explanation:

Engineering stress is the applied load divided by the original cross-sectional area of a material. It is also known as nominal stress. It can also be defined as the force per unit area of a material. Engineering Stress is usually in large numbers.

While Engineering strain is the amount that a material deforms per unit length in a tensile test.  It can also be defined as extension per unit length. It has no unit as it is a ratio of lengths. Engineering Strain is in small numbers.

5 0
3 years ago
Read 2 more answers
Other questions:
  • How would an engineer know if a product design were feasible?
    8·2 answers
  • The high electrical conductivity of copper is an important design factor that helps improve the energy efficiency of electric mo
    10·1 answer
  • Air at 300 K and 100 kPa steadily flows into a hair dryer having electrical work input of 1500 W. Because of the size of the air
    6·2 answers
  • A cylinder fitted with a movable piston contains water at 3 MPa with 50% quality, at which point the volume is 20 L. The water n
    8·2 answers
  • With a reservoir pressure of 1.0 MPa and temperature of 750 K, air enters a converging-diverging nozzle, in a steady fashion. Fl
    5·1 answer
  • A plane wall of thickness 2L = 40 mm and thermal conductivity k = 5 W/m K experiences uniform volumetric heat generation at a ra
    15·1 answer
  • What are the nine Historical periods?
    9·1 answer
  • Explain the importance of water quality in aquaculture business.
    8·2 answers
  • At the coast on a summer day, the land is hotter than the ocean. Warm air over the land rises and is replaced by cooler air, cau
    14·2 answers
  • The primary of an ideal transformer has 400 turns and its secondary has 200 turns. Neglecting electrical losses, if the power in
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!