Translate in Spanish: lo siento, hubiera puesto 300 puntos pero los usé todos para mi última pregunta
If you meant a different language lmk
What is that lol? Ensuring
Answer:
676 ft
Explanation:
Minimum sight distance, d_min
d_min = 1.47 * v_max * t_total where v_max is maximum velocity in mi/h, t_total is total time
v_max is given as 50 mi/h
t_total is sum of time for right-turn and adjustment time=8.5+0.7=9.2 seconds
Substituting these figures we obtain d_min=1.47*50*9.2=676.2 ft
For practical purposes, this distance is taken as 676 ft
Answer:
potato<-100
print(potato)
sqrt(potato)
potato<-potato*2
print(potato)
Explanation:
The complete question is as follows
Create a variable called potato whose value corresponds to the number of potatoes you’ve eaten in the last week. Or something equally ridiculous. Print out the value of potato.
Calculate the square root of potato using the sqrt() function. Print out the value of potato again to verify that the value of potato hasn’t changed.
Reassign the value of potato to potato * 2.
Print out the new value of potato to verify that it has changed
The question was answered using R programming language.
At line 1, I assumed that I ate 100 potatoes in the previous week.
So, potato = 100
At line 2, the value of potato is printed as 100.
At line 3, the square root of potato is calculated using sqrt function: Square for of 100 = 10
At line 4,the initial value of potato is doubled and stored in potato variable. 100 * 2 = 200
At line 5, the new value of potato is printed: 200.
Answer:
KE= 687.21 BTU
Explanation:
Given that
Mass of car = 2500 lbm
We know that 1 lb=0.45 kg
So the mass of car m =1133.98 kg
Velocity of car= 80 mph
We know that 1 mph =0.44 m/s
So velocity of car = 35.76 m/s
As we know that kinetic energy (KE) is given as follows

Now by putting the values

KE=725.05 KJ
We know that 1 KJ = 0.94 BTU
So KE= 687.21 BTU