Answer:
C
Explanation:
hope for help ....im expert
Answer:
Moment of Inertia, I = 0.016 kgm²
Explanation:
Mass of the ball, m = 0.20 kg
Length of the pitcher's arm, l = 0.28
Radius of the circular arc, r = 0.28 m
Moment of Inertia is given by the formula:
I = mr²
I = 0.20 * 0.28²
I = 0.20 * 0.0784
I = 0.01568
I = 0.016 kgm²
What exactly is a psychological disorder? How is a psychological disorder diagnosed? Defining exactly what constitutes a mental disorder can be tricky and, definitions have changed over time.
The
first problem is that psychologists must first decide exactly how to
define disorder. How do you determine if there is something
psychologically wrong or unhealthy about a person? How do you decide
what's normal and what's abnormal?
If you were to define disorder
as something that lies outside of the statistical norm, then people who
are considered exceptionally talented or gifted in a particular area
would be regarded as abnormal. So rather than focus on actions that are
considered outside of the normal statistically speaking, psychologists
tend to concentrate on the results of those behaviors. Behaviors that
are considered maladaptive and cause significant personal distress and
interrupt daily functioning are more likely to be labeled as abnormal.
Today
many psychologists agree that psychological disorders are characterized
by both personal distress and impairment in multiple areas of life.
Answer:
D ≈ 8.45 m
L ≈ 100.02 m
Explanation:
Given
Q = 350 m³/s (volumetric water flow rate passing through the stretch of channel, maximum capacity of the aqueduct)
y₁ - y₂ = h = 2.00 m (the height difference from the upper to the lower channels)
x = 100.00 m (distance between the upper and the lower channels)
We assume that:
- the upper and the lower channels are at the same pressure (the atmospheric pressure).
- the velocity of water in the upper channel is zero (v₁ = 0 m/s).
- y₁ = 2.00 m (height of the upper channel)
- y₂ = 0.00 m (height of the lower channel)
- g = 9.81 m/s²
- ρ = 1000 Kg/m³ (density of water)
We apply Bernoulli's equation as follows between the point 1 (the upper channel) and the point 2 (the lower channel):
P₁ + (ρ*v₁²/2) + ρ*g*y₁ = P₂ + (ρ*v₂²/2) + ρ*g*y₂
Plugging the known values into the equation and simplifying we get
Patm + (1000 Kg/m³*(0 m/s)²/2) + (1000 Kg/m³)*(9.81 m/s²)*(2 m) = Patm + (1000 Kg/m³*v₂²/2) + (1000 Kg/m³)*(9.81 m/s²)*(0 m)
⇒ v₂ = 6.264 m/s
then we apply the formula
Q = v*A ⇒ A = Q/v ⇒ A = Q/v₂
⇒ A = (350 m³/s)/(6.264 m/s)
⇒ A = 55.873 m²
then, we get the diameter of the pipe as follows
A = π*D²/4 ⇒ D = 2*√(A/π)
⇒ D = 2*√(55.873 m²/π)
⇒ D = 8.434 m ≈ 8.45 m
Now, the length of the pipe can be obtained as follows
L² = x² + h²
⇒ L² = (100.00 m)² + (2.00 m)²
⇒ L ≈ 100.02 m
Queremos crear un diagrama general para calcular el área de un triangulo.
Este será algo como:
- Definir variables
- Pedirle al usuario que introduzca los valores deseados (de las variables).
- Leer los valores deseados y asignarlo a la variable correspondiente.
- Realizar la operación para calcular el área.
- Mostrar en pantalla el resultado.
Como naturalmente habra algunas variaciones segun el programa que utilicemos, lo voy a escribir de forma bastante general.
Primero definamos nuestras variables:
Por ejemple, en fortran usariamos algo como:
real:: B, H, A
Donde B será la variable que usaremos para la base, H para la altura, y A para el área.
Luego tenemos que escribir en pantalla algo que le diga al usario que debe introducir la base y el area.
Luego el programa debe ser capaz de leer ese input.
con algo de la forma:
B = read*input 1
H = read*input 2
Una vez tenemos definidas las variables, simplemente calculamos el área del triangulo:
A = H*B/2
Finalmente la podemos mostrar en pantalla con algo como:
print(A).
Lo que nos mostraría el valor del área.
Concluyendo, el diagrama en general sería:
- Definir variables
- Pedirle al usuario que introduzca los valores deseados (de las variables).
- Leer los valores deseados y asignarlo a la variable correspondiente.
- Realizar la operación para calcular el área.
- Mostrar en pantalla el resultado.
Si quieres aprender más, puedes leer:
brainly.com/question/21949109