1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Alika [10]
3 years ago
6

A steel bar 100 mm long and having a square cross section 20 mm x 20 mm is pulled in

Engineering
1 answer:
Ierofanga [76]3 years ago
5 0

Answer:

222.5 Gpa

Explanation:

From definition of engineering stress, \sigma=\frac {F}{A}

where F is applied force and A is original area

Also, engineering strain, \epsilon=\frac {\triangle l}{l} where l is original area and \triangle l is elongation

We also know that Hooke's law states that E=\frac {\sigma}{\epsilon}=\frac {\frac {F}{A}}{\frac {\triangle l}{l}}=\frac {Fl}{A\triangle l}

Since A=20 mm* 20 mm= 0.02 m*0.02 m

F= 89000 N

l= 100 mm= 0.1 m

\triangle l= 0.1 mm= 0.1\times 10^{-3} m

By substitution we obtain

E=\frac {89000\times 0.1}{0.02^{2}\times 0.1\times 10^{-3}}=2.225\times 10^{11}= 225.5 Gpa

You might be interested in
What was the first prototype of the artificial tree like?
olga_2 [115]

Answer:

An artificial Christmas tree is an artificial pine or fir tree manufactured for the specific purpose of use as a Christmas tree. The earliest artificial Christmas trees were wooden, tree-shaped pyramids or feather trees, both developed by Germans. Most modern trees are made of polyvinyl chloride (PVC) but many other types of trees have been and are available, including aluminum Christmas trees and fiber-optic illuminated Christmas trees.

Explanation:

7 0
3 years ago
Identify parts of the E-Cig that constitute voltage, current, and resistance. Discuss the role each plays in the E-Cig and typic
Leno4ka [110]

Answer: c

Explanation:

7 0
2 years ago
(Gas Mileage) Drivers are concerned with the mileage their automobiles get. One driver has kept track of several trips by record
Effectus [21]

Answer:

import java.util.*;

public class Main {

   

   public static void main(String[] args) {

     

       double milesPerGallon = 0;

       int totalMiles = 0;

       int totalGallons = 0;

       double totalMPG = 0;

       

       Scanner input = new Scanner(System.in);

 

       while(true){

           System.out.print("Enter the miles driven: ");

           int miles = input.nextInt();

           if(miles <= 0)

               break;

           else{

               System.out.print("Enter the gallons used: ");

               int gallons = input.nextInt();

               totalMiles += miles;

               totalGallons += gallons;

               milesPerGallon = (double) miles/gallons;

               totalMPG = (double) totalMiles / totalGallons;

               System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);

               System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);

           }

       }

   }  

}

Explanation:

Initialize the variables

Create a while loop that iterates until the specified condition is met inside the loop

Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.

6 0
3 years ago
Karl and Susan have agreed to come to our party, _______ has made Maria very happy.   that   which   what   who​
Aleks04 [339]

Answer:

that

I am not sure that this is the answer

but i hopethis will help you

4 0
3 years ago
Using a queue.
beks73 [17]

Answer:

// Radix Sort

#include<iostream>

using namespace std;

// function to get max value

int getMaximum(int array[], int n)

{

int max = array[0];

for (int i = 1; i < n; i++)

if (array[i] > max)

max = array[i];

return max;

}

// function to get min value

int getMinimum(int array[], int n)

{

int mn = array[0];

for (int i = 1; i < n; i++)

if (array[i] <mn)

mn= array[i];

return mn;

}

//counting sort

void counterSort(int array[], int n, int expo)

{

int out[100]; // out max

int i, count[10] = {0};

// Store count of occurrences in count[]

for (i = 0; i < n; i++)

count[ (array[i]/expo)%10 ]++;

// Change count[i] so that count[i] now contains actual

// position of this digit in out[]

for (i = 1; i < 10; i++)

count[i] += count[i - 1];

// construct the out max

for (i = n - 1; i >= 0; i--)

{

out[count[ (array[i]/expo)%10 ] - 1] = array[i];

count[ (array[i]/expo)%10 ]--;

}

for (i = 0; i < n; i++)

array[i] = out[i];

}

void counterSortDesc(int array[], int n, int expo)

{

int out[100]; // out max

int i, count[10] = {0};

// Store count of occurrences in count[]

for (i = 0; i < n; i++)

count[ (array[i]/expo)%10 ]++;

for (i = 10; i >=1; i--)

count[i] += count[i - 1];

// construct out max

for (i = 0; i >= n-1; i++)

{

out[count[ (array[i]/expo)%10 ] - 1] = array[i];

count[ (array[i]/expo)%10 ]++;

}

// Copy the out max to array[], so that array[] now

// contains sorted numbers according to current digit

for (i = 0; i < n; i++)

array[i] = out[i];

}

// Radix Sort function

void radixsort(int array[], int n)

{

// get maximum number

int m = getMaximum(array, n);

for (int expo = 1; m/expo > 0; expo *= 10)

counterSort(array, n, expo);

}

void radixsortDesc(int array[], int n)

{

// get minimum number

int m = getMinimum(array, n);

for (int expo = 1; m/expo > 0; expo *= 10)

counterSortDesc(array, n, expo);

}

// print an max

void print(int array[], int n)

{ cout<<"\n";

for (int i = 0; i < n; i++)

cout << array[i] << " ";

}

// Main function

int main()

{

int array[] = {185, 25, 35, 90, 904, 34, 2, 66};

int n = sizeof(array)/sizeof(array[0]);

radixsort(array , n);

print(array, n);

radixsortDesc(array,n);

print(array,n);

return 0;

}

Explanation:

7 0
3 years ago
Other questions:
  • A high-voltage direct-current (dc) transmission line between Celilo, Oregon and Sylmar, California is 845 mi in length. The line
    15·1 answer
  • Determine the required dimensions of a column with a square cross section to carry an axial compressive load of 6500 lb if its l
    12·2 answers
  • Define an ADT for a two-dimensional array of integers. Specify precisely the basic operations that can be performed on such arra
    5·1 answer
  • A 1000 W iron utilizes a resistance wire which is 20 inches long and has a diameter of 0.08 inches. Determine the rate of heat g
    12·1 answer
  • A consolidation test was performed on a sample of fine-grained soil sample taken from a depth such that the vertical effective s
    14·1 answer
  • If you measure 0.7 V across a diode, the diode is probably made of
    6·1 answer
  • Which one of the following activities is not exempt from licensure pursuant to Chapter 471, F.S.? A person practicing engineerin
    5·1 answer
  • A 0.50 m3 drum was filled with 0.49 m3 of liquid water at 25oC and the remaining volume was water vapor without any air. The dru
    15·1 answer
  • A microwave transmitter has an output of 0.1 W at 2 GHz. Assume that this transmitter is used in a microwave communication syste
    8·1 answer
  • Effective presentations are: Have a central message Colorful and exciting Have many messages Are influence by a setting Created
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!