Answer:
Kindly see explaination
Explanation:
Code
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define size 200
int main(void)
{
int const numStates = 50;
char tempBuffer[size];
char tmp[size];
char fileName[] = "stateData.txt"; // Name of the text file (input file) which contains states and its populations
char outFile[] = "stateDataOutput1.txt"; // Output file name
// Open the input file, quit if it fails...
FILE *instream = fopen(fileName, "r");
/* Output File variable */
FILE *opstream;
if(instream == NULL) {
fprintf(stderr, "Unable to open file: %s\n", fileName);
exit(1);
}
//TODO: Open the output file in write ("w") mode
/* Opening output file in write mode */
opstream = fopen(outFile, "w");
//TODO: Read the file, line by line and write each line into the output file
//Reading data from file
while(fgets(tmp, size, instream) != NULL)
{
//Writing data to file
fputs(tmp, opstream);
}
// Close the input file
fclose(instream);
//TODO: Close the output file
/* Closing output file */
fclose(opstream);
return 0;
}
Answer:
1790 μrad.
Explanation:
Young's modulus, E is given as 10000 ksi,
μ is given as 0.33,
Inside diameter, d = 54 in,
Thickness, t = 1 in,
Pressure, p = 794 psi = 0.794 ksi
To determine shear strain, longitudinal strain and circumferential strain will be evaluated,
Longitudinal strain, eL = (pd/4tE)(1 - 2μ)
eL = (0.794 x 54)(1 - 0.66)/(4 x 1 x 10000)
eL = 3.64 x 10-⁴ radians
Circumferential strain , eH = (pd/4tE)(2-μ)
eH = (0.794 x 54)(2 - 0.33)/(4 x 1 x 10000)
eH = 1.79 x 10-³ radians
The maximum shear strain is 1790 μrad.
Answer:
Welding, carpentry, masonry, construction worker, barber
Explanation:
GPS device details are given below.
Explanation:
Even a simple GPS unit has a wide range of settings and features. Because every unit’s operation varies, this article won’t provide step-by-step details. Read the owner's manual to familiarize yourself with it..
If you’d like additional help, you can also sign up for a GPS navigation class at an REI store.
Though steps vary, all GPS receivers do the following basic functions:
Display position: A GPS tells you where you are by displaying your coordinates; it also shows your position on its base map or topo map.
Record tracks: When tracking is turned on, a GPS automatically lays down digital bread crumbs, called “track points,” at regular intervals. You use those later to retrace your steps or to evaluate the path you traveled.
Navigate point-to-point: A GPS directs you by giving you the direction and distance to a location, or “waypoint.” You can pre-mark waypoints by entering their coordinates at home. In the field you can have the unit mark a waypoint at a place you'd like to return to, such as the trailhead or your campsite. A GPS unit provides the bearing and distance “as the crow flies” to a waypoint. Because trails don’t follow a straight line, the bearing changes as you hike. The distance to travel also changes (decreasing, unless you’re heading the wrong direction) as you approach your goal.
Display trip data: This odometer-like function tells you cumulative stats like how far you’ve come and how high you’ve climbed.
GPS and your computer: GPS units come with a powerful software program that lets you manage maps, plan routes, analyze trips and more. Invest the time to learn it and to practice using all of its capabilities.