Answer:
Evaporation.
Explanation:
Evaporation is the stage of the Water Cycle where water turns into water vapor. The steps following Evaporation in order include Condensation, Precipitation, and Transpiration.
Answer:
vB = - 0.176 m/s (↓-)
Explanation:
Given
(AB) = 0.75 m
(AB)' = 0.2 m/s
vA = 0.6 m/s
θ = 35°
vB = ?
We use the formulas
Sin θ = Sin 35° = (OA)/(AB) ⇒ (OA) = Sin 35°*(AB)
⇒ (OA) = Sin 35°*(0.75 m) = 0.43 m
Cos θ = Cos 35° = (OB)/(AB) ⇒ (OB) = Cos 35°*(AB)
⇒ (OB) = Cos 35°*(0.75 m) = 0.614 m
We apply Pythagoras' theorem as follows
(AB)² = (OA)² + (OB)²
We derive the equation
2*(AB)*(AB)' = 2*(OA)*vA + 2*(OB)*vB
⇒ (AB)*(AB)' = (OA)*vA + (OB)*vB
⇒ vB = ((AB)*(AB)' - (OA)*vA) / (OB)
then we have
⇒ vB = ((0.75 m)*(0.2 m/s) - (0.43 m)*(0.6 m/s) / (0.614 m)
⇒ vB = - 0.176 m/s (↓-)
The pic can show the question.
Answer:
A phrase from: who loves life
Explanation:
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)