Answer:
most people cant solve a given problem with anexpected outcome
Answer:
Anything you want to do in Hootsuite can be found in the ___ Sidebar_____, with the main workspace in the ___center______
Sidebar; center
Explanation:
The main workspace of the Hootsuite is located in the center. The sidebar is where the core access to the Hootsuite functionality, like Streams, Inbox, Planner, Analytics, Publisher, and the App Directory, is obtained. Hootsuite is a media management platform for curating content, scheduling posts, managing team members, and measuring performances.
Answer:
B A and C
Explanation:
Given:
Specimen σ
σ
A +450 -150
B +300 -300
C +500 -200
Solution:
Compute the mean stress
σ
= (σ
+ σ
)/2
σ
= (450 + (-150)) / 2
= (450 - 150) / 2
= 300/2
σ
= 150 MPa
σ
= (300 + (-300))/2
= (300 - 300) / 2
= 0/2
σ
= 0 MPa
σ
= (500 + (-200))/2
= (500 - 200) / 2
= 300/2
σ
= 150 MPa
Compute stress amplitude:
σ
= (σ
- σ
)/2
σ
= (450 - (-150)) / 2
= (450 + 150) / 2
= 600/2
σ
= 300 MPa
σ
= (300- (-300)) / 2
= (300 + 300) / 2
= 600/2
σ
= 300 MPa
σ
= (500 - (-200))/2
= (500 + 200) / 2
= 700 / 2
σ
= 350 MPa
From the above results it is concluded that the longest fatigue lifetime is of specimen B because it has the minimum mean stress.
Next, the specimen A has the fatigue lifetime which is shorter than B but longer than specimen C.
In the last comes specimen C which has the shortest fatigue lifetime because it has the higher mean stress and highest stress amplitude.
Answer:
#include <iostream>
#include <iomanip>
using namespace std;
class pointType
{
public:
pointType()
{
x=0;
y=0;
}
pointType::pointType(double x,double y)
{
this->x = x;
this->y = y;
}
void pointType::setPoint(double x,double y)
{
this->x=x;
this->y=y;
}
void pointType::print()
{
cout<<"("<<x<<","<<y<<")\n";
}
double pointType::getX()
{return x;
}
double pointType::getY()
{return y;
}
private:
double x,y;
};
int main()
{
pointType p2;
double x,y;
cout<<"Enter an x Coordinate for point ";
cin>>x;
cout<<"Enter an y Coordinate for point ";
cin>>y;
p2.setPoint(x,y);
p2.print();
system("pause");
return 0;
}