Answer:
Please see the attached file for the complete answer.
Explanation:
Answer:
Tension in cable BE= 196.2 N
Reactions A and D both are 73.575 N
Explanation:
The free body diagram is as attached sketch. At equilibrium, sum of forces along y axis will be 0 hence
hence

Therefore, tension in the cable, 
Taking moments about point A, with clockwise moments as positive while anticlockwise moments as negative then



Similarly,


Therefore, both reactions at A and D are 73.575 N
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:
True
Explanation:
Nikola Tesla defeated Thomas Edison in the AC/DC battle of electric current.
Answer: hope it helps
Explanation:Moving air has a force that will lift kites and balloons up and down. Air is a mixture ... Here is a simple computer simulation that you can use to explore how wings make lift. ... All these dimensions together combine to control the flight of the plane. A pilot ... When the rudder is turned to one side, the airplane moves left or right.