Answer: the allowable load P is 242.7877 kips
Explanation:
Given that;
diameter bolts d = 1.83 in
ultimate shear strength of the bolts = 60 ksi
we know that
shear area = 2×(π/4)d²
= 2×(π/4)×(1.83)² = 5.2604 in²
so
p/3(5.2604) = 60000/3.9
p/15.7812 = 15384.6153
p = 15.7812 × 15384.6153
p = 242787.691 lb
p = 242.7877 kips
therefore the allowable load P is 242.7877 kips
Answer:
Three ways that engineers explore possible solutions in their projects are;
1) Prototyping
2) Simulation
3) Calculations
Explanation:
1) Prototyping is the process of experimental testing of samples of design, or model of a product with the possibility of the inclusion of control of parameters in order to determine the workability of a solution.
2) Simulation is the process of creating an imitation of a situation, operation or process which can be used to determine if a particular solution will be able to work as required in the simulated environment of a problem.
3) Calculations are used to find preliminary results of particular situations, their cause and effects based on scientific laws, theories and hypothesis such that the factor of the problem is equated with the available ideas to find the best possible solution.
Answer:
//Program was implemented using C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
unsigned int second_a(unsigned int n)
{
int r,sum=0,temp;
int first;
for(int i= 1; I<=n; i++)
{
first = n;
//Check if first digit is 3
// Remove last digit from number till only one digit is left
while(first >= 10)
{
first = first / 10;
}
if(first == 3) // if first digit is 3
{
//Check if n is palindrome
temp=n; // save the value of n in a temporary Variable
while(n>0)
{
r=n%10; //getting remainder
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
cout<<n<<" is a palindrome";
else
cout<<n<<" is not a palindrome";
}
}
}
Explanation:
The above code segments is a functional program that checks if a number that starts with digit 3 is Palindromic or not.
The program was coded using C++ programming language.
The main method of the program is omitted.
Comments were used for explanatory purpose.