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
Elenna [48]
3 years ago
9

A cylinder of aluminum-magnesium alloy 0.5 m long is subjected to an elastic tensile stress of 10.2 MPa. The measured elastic el

ongation is 0.34 mm. Determine the Young’s modulus of this material in MPa. (answer format X)
Engineering
1 answer:
elena55 [62]3 years ago
8 0

Answer:

E= 15 GPa.

Explanation:

Given that

Length ,L = 0.5 m

Tensile stress ,σ = 10.2 MPa

Elongation ,ΔL = 0.34 mm

lets take young modulus  = E

We know that strain ε given as

\varepsilon =\dfrac{\Delta L}{L}

\varepsilon =\dfrac{0.34}{0.5\times 1000}

\varepsilon =0.00068

We know that

\sigma = \varepsilon  E\\\\E=\dfrac{10.2}{0.00068}\\E= 15000\ MPa\\E=15\ GPa

Therefore the young's modulus will be 15 GPa.

You might be interested in
Hello , how are yall:))))
SVEN [57.7K]

Answer:

eh I'm good hbu?????????

6 0
2 years ago
Read 2 more answers
A well-insulated, rigid tank has a volume of 1 m3and is initially evacuated. A valve is opened,and the surrounding air enters at
DiKsa [7]

Answer:

0.5 kW

Explanation:

The given parameters are;

Volume of tank = 1 m³

Pressure of air entering tank = 1 bar

Temperature of air = 27°C = 300.15 K

Temperature after heating  = 477 °C = 750.15 K

V₂ = 1 m³

P₁V₁/T₁ = P₂V₂/T₂

P₁ = P₂

V₁ = T₁×V₂/T₂ = 300.15 * 1 /750.15 = 0.4 m³

dQ = m \times c_p \times (T_2 -T_1)

For ideal gas, c_p = 5/2×R = 5/2*0.287 = 0.7175 kJ

PV = NKT

N = PV/(KT) = 100000×1/(750.15×1.38×10⁻²³)

N = 9.66×10²⁴

Number of moles of air = 9.66×10²⁴/(6.02×10²³) = 16.05 moles

The average mass of one mole of air = 28.8 g

Therefore, the total mass = 28.8*16.05 = 462.135 g = 0.46 kg

∴ dQ = 0.46*0.7175*(750.15 - 300.15) = 149.211 kJ

The power input required = The rate of heat transfer = 149.211/(60*5)

The power input required = 0.49737 kW ≈ 0.5 kW.

3 0
3 years ago
Rosita is planning an investigation to determine how a lifeboat's shape affects its
KiRa [710]
Yes! Is right, just did the work!
3 0
3 years ago
Write a iterative function that finds the n-th integer of the Fibonacci sequence. Then build a minimal program (main function) t
Natasha2012 [34]

Answer:

Codes for each of the problems are explained below

Explanation:

PROBLEM 1 IN C++:

#include<iostream>

using namespace std;

//fib function that calculate nth integer of the fibonacci sequence.

void fib(int n){

  // l and r inital fibonacci values for n=1 and n=2;

  int l=1,r=1,c;

 

  //if n==1 or n==2 then print 1.

  if(n==1 || n==2){

      cout << 1;

      return;

  }

  //for loop runs n-2 times and calculates nth integer of fibonacci sequence.

  for(int i=0;i<n-2;i++){

      c=l+r;

      l=r;

      r=c;

      cout << "(" << i << "," << c << ") ";

  }

  //prints nth integer of the fibonacci sequence stored in c.

  cout << "\n" << c;

}

int main(){

  int n; //declared variable n

  cin >> n; //inputs n to find nth integer of the fibonacci sequence.

  fib(n);//calls function fib to calculate and print fibonacci number.

}

PROBLEM 2 IN PYTHON:

def fib(n):

   print("fib({})".format(n), end=' ')

   if n <= 1:

       return n

   else:

       return fib(n - 1) + fib(n - 2)

if __name__ == '__main__':

   n = int(input())

   result = fib(n)

   print()

   print(result)

7 0
3 years ago
Read 2 more answers
(40 points) Program the following sorting algorithms: InsertionSort, MergeSort, and QuickSort. There are 9 test les uploaded for
babunello [35]

Answer:

Explanation:

MERGE SORT

#include<stdlib.h>

#include<stdio.h>

#include<string.h>

void merge(int arr[], int l, int m, int r)

{

int i, j, k;

int n1 = m - l + 1;

int n2 = r - m;

 

int L[n1], R[n2];

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

L[i] = arr[l + i];

for (j = 0; j < n2; j++)

R[j] = arr[m + 1+ j];

i = 0;

j = 0;

k = l;

while (i < n1 && j < n2)

{

if (L[i] <= R[j])

{

arr[k] = L[i];

i++;

}

else

{

arr[k] = R[j];

j++;

}

k++;

}

while (i < n1)

{

arr[k] = L[i];

i++;

k++;

}

while (j < n2)

{

arr[k] = R[j];

j++;

k++;

}

}

void mergeSort(int arr[], int l, int r)

{

if (l < r)

{

int m = l+(r-l)/2;

mergeSort(arr, l, m);

mergeSort(arr, m+1, r);

merge(arr, l, m, r);

}

}

void printArray(int A[], int size)

{

int i;

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

printf("%d ", A[i]);

printf("\n");

}

int main()

{

int arr[1000] = {0};

int arr_size =0;

int data;

char file1[20];

strcpy(file1,"data.txt");

FILE *fp;

fp = fopen(file1,"r+");

if (fp == NULL) // if file not opened return error

{

perror("Unable to open file");

return -1;

}

else

{

fscanf (fp, "%d", &data);    

arr[arr_size]=data;

arr_size++;

while (!feof (fp))

{  

fscanf (fp, "%d", &data);  

arr[arr_size]=data;

arr_size++;    

}

}

printf("Given array is \n");

printArray(arr, arr_size);

mergeSort(arr, 0, arr_size - 1);

printf("\nSorted array Using MERGE SORT is \n");

printArray(arr, arr_size);

return 0;

}

3 0
3 years ago
Other questions:
  • A simple ideal Rankine cycle with water as the working fluid operates between the pressure limits of 4 MPa in the boiler and 25
    14·2 answers
  • After a 65 newton weight has fallen freely from rest a vertical distance of 5.3 meters, the kinetic energy of the weight is
    12·1 answer
  • A hollow aluminum sphere, with an electrical heater in the center, is used in tests to determine the thermal conductivity of ins
    6·1 answer
  • (a) In a 3-phase, 4-wire system, the currents are in the A, B, and C lines under abnormal conditions of loading were as follows:
    9·1 answer
  • Problem 2. The length of a side of the square block is 4 in. Under the application of the load V, the top edge of the block disp
    6·1 answer
  • Give me uses of a grinding machine in agriculture.
    15·1 answer
  • Which of the following sentences uses the word malleable correctly?
    7·2 answers
  • Many farms and ranches use electric fences to keep animals from getting into or out of specific pastures. When switched on, an e
    8·2 answers
  • Only respond if your the person im talkin to
    14·1 answer
  • Solve the inequality below.Use the drop-down menus to describe the solution and its graph.
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!