Answer:
Explanation:
Work, U, is equal to the force times the distance:
U = F · r
Force needed to lift the weight, is equal to the weight: F = W = m · g
so:
U = m · g · r
= 20.4kg · 9.81 · 1.50m
= 35.316
= 35.316 W
A boy eat a energy of a sandwich to run a race because when they eat a sandwich it helps them to help it mid workout and real nutritions of NYC and bring extra fuel and eating the right thing
I hope this help
Answer:
a)
The crack and connecting rod is used in the design of car.This mechanism is known as slider -crank mechanism.
Components:
1.Inlet tube
2. Wheel
3. Exhaust
4. Engine
5.Air tank
6.Pressure gauge
7.Stand
8. Gate valve
b)
The efficiency of air engine is less as compare to efficiency of electric engine and this is not ecofriendly because it produce green house gases.These gases affect the environment.
c)
it can run around 722 km when it is full charge.
Okay sure.
I’ll 1)chords
2)pulse
3)aerophone
4) the answer is C
5)rhythm
Pretty sure those are the answers
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)