Answer:
The frequency of wave is 160Hz.
Explanation:
Given that the formula of speed is V = f×λ where V represents speed, f is frequency and λ is wavelength.
So first thing, you have to make frequency the subject by dividing wavelength on both sides :



Next you have to substitute the value of v and f into the formula :
Let λ = 2.5m,
Let v = 400m/s,


Answer:
Explanation:
la frecuencia = ω/2π, nada cambio
v(max) = ωA → ω2Α = 2ωA duplicara velocidad máxima
a(max) = ω²Α → ω²2Α = 2ω²Α duplicara la aceleración máxima
la energía total ½kA² → ½k(2Α)² = 4(½kA²) cuatro veces la energía
Answer:
True, check attachment for code
Explanation:
To convert java strings of text to upper or lower case, we can use and inbuilt methods To Uppercase and To lower case.
The first two lines of code will set up a String variable to hold the text "text to change", and then we print it out.
The third line sets of a second String variable called result.
The fourth line is where the conversion is done.
We can compare the string
We can compare one string to another. (When comparing, Java will use the hexadecimal values rather than the letters themselves.) For example, if we wanted to compare the word "Fat" with the word "App" to see which should come first, you can use an inbuilt string method called compareTo.
Check attachment for the code