Which property of real numbers is shown below?3 + ((-5) + 6) = (3 + (-5)) + 6
commutative property of addition
identity property of multiplication
associative property of addition
commutative property of multiplication

Answers

Answer 1
Answer:

The property of realnumbers is shown below is associative property of addition. The correct option is C.

What is associative property of addition?

According to the associativeproperty of addition, you can arrange the addends in several ways without changing the result.

According to the commutative property of addition, you can rearrange the addends without altering the result.

When more than two numbers are added together or multiplied, the outcome is always the same, regardless of how the numbers are arranged.

This is known as the associativeproperty. As an illustration, 2 (7 6) = (2 7) 6. 2 + (7 + 6) = (2 + 7) + 6.

Thus, the correct option is C.

For more details regarding associative property, visit:

brainly.com/question/30111262

#SPJ1

Answer 2
Answer:

Answer:

C

Explanation:


Related Questions

A rocket is launched vertically from rest with a constant thrust until the rocket reaches an altitude of 25 m and the thrust ends. The rocket has mass 2 kg and thrust force 35 N. Neglecting air resistance, determine (a) the speed of the rocket when the thrust ends, (b) the maximum height reached by the rocket, and (c) the speed of the rocket when it returns to the ground.
Currently, system administrators create Ken 7 users in each computer where users need access. In the Active Directory, where will system administrators create Ken 7 users? 2. How will the procedures for making changes to the user accounts, such as password changes, be different in the Active Directory? 3. What action should administrators take for the existing workgroup user accounts after converting to the Active Directory? 4. How will the administrators resolve the differences between the user accounts defined on the different computers? In other words, if user accounts have different settings on different computers, how will the Active Directory address that issue? 5. How will the procedure for defining access controls change after converting to the Active Directory?
A 100-mm-diameter cast Iron shaft is acted upon by a 10 kN.m bending moment, a 8 kN.m torque, and a 150 kN axial force simultaneously. The ultimate tensile strength of the shaft material is 210 MPa, and the ultimate compressive strength of the shaft material is 750 MPa, determine the safety factor against failure for the above types of loading using a proper theory of failure.
"Given a nodal delay of 84.1ms when there is no traffic on the network (i.e. usage = 0%), what is the effective delay when network usage = 39.3% ? (Give answer is miliseconds, rounded to one decimal place, without units. So for an answer of 0.10423 seconds you would enter "104.2" without the qu"
A composite wall consists of 20 mm thick steel plate backed by insulation brick (k = 0.39 W/mK) of 50 cm thickness and overlaid by mineral wool of 20 cm thickness (k = 0.05 W/mK) and 70 cm layer of brick of (k = 0.39 W/mK). The inside is exposed to convection at 650°C with h = 65 W/ m2K. The outside is exposed to air at 35°C with a convection coefficient of 15 W/m2K. Determine the heat loss per unit area, interface temperatures and temperature gradients in each materials.

1.19. A gas is confined in a 0.47 m diameter cylinder by a piston, on which rests a weight. The mass of the piston and weight together is 150 kg. The local acceleration of gravity is 9.813 m·s−2, and atmospheric pressure is 101.57 kPa. (a) What is the force in newtons exerted on the gas by the atmosphere, the piston, and the weight, assuming no friction between the piston and cylinder? (b) What is the pressure of the gas in kPa? (c) If the gas in the cylinder is heated, it expands, pushing the piston and weight upward. If the piston and weight are raised 0.83 m, what is the work done by the gas in kJ? What is the change in potential energy of the piston and weight?\

Answers

In this exercise we have to use the knowledge of force to calculate the required energies, so we have to:

a) 19094 N

b) 110.055 kPa

c) 1222 J

What is the concept of force?

In the field of physics, force is a physical action that causes deformation or that changes the state of rest or movement of a given object.

a) Knowing that the force formula is defined by:

F = P + p * A\nF = m * g + p *\pi /4 * d^2\nF = 150 * 9.813 + 101570 * \pi /4 * 0.47^2 = 19094 N

b) Knowing that the force exerted by an area is equal to the pressure in that area, we have:

p_1 = F / A\np_1 = F / (\pi /4 * d^2)\np_1 = 19094 / (\pi /4 * 0.47^2) = 110055 Pa = 110.055 kPa

c)So calculating the potential energy we have:

\Delta E_p = m * g * \Delta h\n\Delta E_p = 150 * 9.813 * 0.83 = 1222 J

See more about force at brainly.com/question/26115859

Answer:

a) 19094 N

b) 110.055 kPa

c) 1222 J

Explanation:

The force on the gas is the weight plus the atmospheric pressure multiplied by the piston area

F = P + p * A

F = m * g + p * π/4 * d^2

F = 150 * 9.813 + 101570 * π/4 * 0.47^2 = 19094 N

The pressure is the force divided by the area of the piston

p1 = F / A

p1 = F / (π/4 * d^2)

p1 = 19094 / (π/4 * 0.47^2) = 110055 Pa = 110.055 kPa

variation of gravitational potential energy is defined as

ΔEp = m * g * Δh

ΔEp = 150 * 9.813 * 0.83 = 1222 J

Make a python code.Write a function named max that accepts two integer values as arguments and returns the value that is the greater of the two. For example, if 7 and 12 are passed as arguments to the function, the function should return 12. Use the function in a program that prompts the user to enter two integer values. The program should display the value that is the greater of the two. Write the program as a loop that continues to prompt for two numbers, outputs the maximum, and then goes back and prompts again
Here’s an example of program use
Input the first number: 10
Input the second number: 5
The maximum value is 10
Run again? yes
Input the first number: -10
Input the second number: -5
The maximum value is -5
Run again? no
Function max():
Obtain two numbers as input parameters: max(num1, num2):
if num1 > num2 max_val = num1, else max_val = num2
return max_val
Main Program:
Initialize loop control variable (continue = ‘y’)
While continue == ‘y’
Prompt for first number
Prompt for second number
Call function "max," sending it the values of the two numbers, capture result in an assignment statement:
max_value = max (n1, n2)
Display the maximum value returned by the function
print(‘Max =’, max_val)
Ask user for if she/he wants to continue (continue = input(‘Go again? y if yes’)

Answers

A loop is a control structure in programming that allows a block of code to be executed repeatedly.

How to write the python code?

Here is the Python code that implements the function and program described in the question:

def max(num1, num2):

 if num1 > num2:

   max_val = num1

 else:

   max_val = num2

 return max_val

# Main program

continue = 'y'

while continue == 'y':

 n1 = int(input("Input the first number: "))

 n2 = int(input("Input the second number: "))

 max_val = max(n1, n2)

 print("The maximum value is", max_val)

 continue = input("Run again? ")

Loops are an important programming construct that allow you to perform the same task multiple times with minimal code. They are often used to process data, perform calculations, and perform repetitive tasks.

To Know More About Loops, Check Out

brainly.com/question/29313454

#SPJ4

At steady state, air at 200 kPa, 325 K, and mass flow rateof 0.5 kg/s enters an insulated duct having differing inlet
and exit cross-sectional areas. The inlet cross-sectional area is
6 cm26cm
2. At the duct exit, the pressure of the air is 100 kPa and the velocity is 250 m/s. Neglecting potential energy
effects and modeling air as an ideal gas with constant cp=1.008 kJ/kg⋅Kc
p =1.008kJ/kg⋅K, determine
(a) the velocity of the air at the inlet, in m/s.
(b) the temperature of the air at the exit, in K.
(c) the exit cross-sectional area, in cm2
(a) the velocity of the air at the inlet, in m/s.
(b) the temperature of the air at the exit, in K.
(c) the exit cross-sectional area, in cm

Answers

Letra A

A letra

A.
Thank

An inflatable structure has the shape of a half-circular cylinder with hemispherical ends. The structure has a radius of 40 ft when inflated to a pressure of 0.60 psi. A longitudinal seam runs the entire length of the structure. The seam fails in tension when the load is 600 pounds per inch of seam. What is the factor of safety with respect to longitudinal seam failure?

Answers

Find the given attachment

A 24.3-foot long pipe use to carry solvent through a chemical plant is made of two layers. The inner layer is a one-inch schedule 30 stainless steel (AISI 304) pipe. An outer coating is made of plain carbon steel and is 0.075 inches thick. The hot solvent stream can be assumed to have a constant temperature of 180.0oF as it passes through the pipe. On the outside of the pipe is air at 85.0oF. Given the solvent has a convective heat transfer coefficient of 275 Btu/h-ft^2-oF, while the air has a convective heat transfer coefficient of 140 Btu/h-ft^2-oF.A. Determine UA and q for heat transfer in this system. (Since the problem is given in English units, your answer should also be in English units)
B. Determine the overall heat transfer coefficients, U; and U., for the pipe.
C. Would your answer change if the two materials were swapped so that the inside material were carbon steel and the outside material of the pipe were made of AISI 304 stainless steel? If so, calculate new values for UA and q. If not, explain why your answer would not change. (Here, assume the dimensions of the inner material (now plain carbon steel) match those of the AISI 304 schedule 30 stainless steel from part A, and the stainless steel is 0.075 inches thick on the outside.)

Answers

Sorry man i dont know the answer to this one

A metal crystallizes with a face-centered cubic lattice. The edge of the unit cell is 408 pm. Calculate the number of atoms in the unit cell and diameter of the metal atom.

Answers

Answer:288 pm

Explanation:

Number of atoms(s) for face centered unit cell -

Lattice points: at corners and face centers of unit cell.

For face centered cubic (FCC), z=4.

- whereas

For an FCC lattices √2a =4r =2d

Therefore d = a/√2a = 408pm/√2a= 288pm

I think with this step by step procedure the, the answer was clearly stated.

Other Questions