Explanation:
Sum of forces in the x direction:
∑Fx = ma
Rx − 250 N = 0
Rx = 250 N
Sum of forces in the y direction:
∑Fy = ma
Ry − 120 N − 300 N = 0
Ry = 420 N
Sum of forces in the z direction:
∑Fz = ma
Rz − 50 N = 0
Rz = 50 N
Sum of moments about the x axis:
∑τx = Iα
Mx + (-50 N)(0.2 m) + (-120 N)(0.1 m) = 0
Mx = 22 Nm
Sum of moments about the y axis:
∑τy = Iα
My = 0 Nm
Sum of moments about the z axis:
∑τz = Iα
Mz + (250 N)(0.2 m) + (-120 N)(0.16 m) = 0
Mz = -30.8 Nm
Answer:

Explanation:
Density is defined as mass ler unit volume, expressed as

Where m is mass,
is density and v is the volume. For a sphere, volume is given as

Replacing this into the formula of density then

Given diameter of 2.24 in then the radius is 1.12 in. Substituting 0.82 lb for m then

Answer:
Going green means increasing one's initiatives toward a concern for the environment.
Explanation:
Going green involves all the knowledge and practices that can lead to more environmentally friendly and ecologically responsible decisions and lifestyles, which would protect and sustain the natural resources present in the environment for both present and future generations.
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)
Answer:
Aggressive behavior
Explanation:
Alcohol consumption tends to cause more Aggressive behavior.
The consumption of alcohol plays a more role in our culture but drinking of too much alcohol can cause drowsiness, vomiting, Upset stomach, slurred speech, heart damage, infertile, numbness lung infections, and many more. Also too much alcohol can cause violence, anger and so on in the society.