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
inn [45]
3 years ago
15

A steel bar 110 mm long and having a square cross section 22 mm on an edge is pulled in tension with a load of 89,000 N, and exp

eriences an elongation of 0.10 mm. Assuming that the deformation is entirely elastic, calculate the elastic modulus of the steel.
Engineering
1 answer:
iragen [17]3 years ago
3 0

Answer:

Elastic modulus of steel  = 202.27 GPa

Explanation:

given data

long = 110 mm = 0.11 m

cross section 22 mm  = 0.022 m

load = 89,000 N

elongation = 0.10 mm = 1 × 10^{-4} m

solution

we know that Elastic modulus is express as

Elastic modulus = \frac{stress}{strain}    ................1

here stress is

Stress = \frac{Force}{area}       .................2

Area = (0.022)²

and  

Strain = \frac{extension}{length}       .............3

so here put value in equation 1 we get

Elastic modulus = \frac{89,000\times 0.11}{0.022^2 \times 1 \times 10^{-4} }  

Elastic modulus of steel = 202.27 × 10^9 Pa

Elastic modulus of steel  = 202.27 GPa

You might be interested in
Two small balls A and B with masses 2m and m respectively are released from rest at a height h above the ground. Neglecting air
statuscvo [17]

Answer:

The kinetic energy of A is twice the kinetic energy of B

Explanation:

5 0
4 years ago
Question #8
iris [78.8K]

Problem solving is the act of orderly searching for solutions to problem

The correct option that involves approaching a problem in a new way is the option;

Creative thinking

The reasons why creative thinking is the correct option is given as follows;

Finding new ways to approach a problem, involves considering alternatives to already known approaches to the problem

Given that the options to be considered are to be options which have not been applied, then the process does not involve;

Context: Which looks at the variables that relate the problem with setting or circumstance that aid understanding of the problem

Critical thinking; Which is based on the analysis of the known facts, but the new proposals are required

Perseverance; Which involves adherence to a particular option despite delay or difficulty

However;

Creative thinking; Creative thinking involves the consideration of a situation thing or problem in a new way or by approaching a task differently than what was considered a regular approach, which involves finding an unused or imaginative approach to a problem

Therefore;

The option that involves finding new ways to approach a problem is <u>creative thinking</u>

<u />

Learn lore about problem solving here:

brainly.com/question/24528689

3 0
2 years ago
If the price of the car is less than or equal to your available cash, display "no". If the price of the car is more than your av
Ede4ka [16]

Answer:

function decision(car_price, available_cash) {

   if(car_price <= available_cash) {

   console.log("no");

   }

   else  {

   console.log("yes");

   }

   }

decision(car_price, available_cash); or decision(available_cash, car_price);

Explanation:

using functions in Javascript:

functions; this refers to dividing codes into reusable parts.

e.g function function_name() {

console.log("How are you?");

}

you can call or invoke this function by using its name followed by parenthesis, like this: function_name(). each time the function is called it will   print out "How are you?".

Parameters: these are variables that act as placeholders for the values that are to be input into a function when it is called

Arguments: The actual values that input or passed into a function when it is called.

e.g

function function_name(parameter1, parameter2) {

console.log(parameter1, parameter2);

}

then we call function_name: function_name("please", "leave"):we have passed two arguments, "please"  and "leave". Inside the function parameter1 equals "please" while parameter2 equals "leave".

Hence, from the question given the two parameters "car_price" and "available_cash" respectively, we write the function with name function_name:

function decision(car_price, available_cash) {

   if(car_price <= available_cash) {

   console.log("no");

   }

   else  {

   console.log("yes");

   }

   }

decision(car_price, available_cash); or decision(available_cash, car_price);

7 0
3 years ago
ShoppingBay is an online auction service that requires several reports. Data for each auctioned item includes an ID number, item
daser333 [38]

Answer:

START

  READ ID_Number

  READ Item_description

  READ length_of_auction_Days

  READ minimum_required_bid  

  IF minimum_required_bid GREATER THAN 100

      THEN

          DISPLAY

              Item Details are

              Item Id : ID_Number

              Item Description: Item_description

              Length Action days: length_of_auction_Days

              Minimum Required Bid: minimum_required_bid

END

Explanation:

5 0
3 years ago
Q4 a.
dedylja [7]

The Java program that accepts a matrix of M × N order and then interchanges diagonals of the matrix is given below:

<h3>Steps:  </h3>
  • 1. We can only interchange diagonals for a square matrix.
  • 2. Therefore, we would have to create a square matrix of size [M × M].
  • 3. We would check whether the matrix is a square matrix or not. If the matrix is square then follow step 3 else terminate the program.
  • 4. Apply logic for interchange diagonal of the matrix some logic is given below.

<h3>Java Code</h3>

//  Java Program to Accept a Matrix of Order M x N &

//  Interchange the Diagonals

import java.util.Scanner;

public class InterchangeDiagonals {

   public static void main(String[] args)

   {

       // declare variable

       int m, n, i, j, temp;

       // create a object of scanner class

       Scanner sc = new Scanner(System.in);

       System.out.print("Enter number of rows ");

       // take number of rows

       m = sc.nextInt();

       System.out.print("Enter number of columns ");

       // take number of columns

       n = sc.nextInt();

       // declare a mxn order array

       int a[][] = new int[m][n];

       // if block it's execute when m is equals to n

       if (m == n) {

           System.out.println(

               "Enter all the values of matrix ");

           // take the matrix inputs

           for (i = 0; i < m; i++) {

               for (j = 0; j < n; j++) {

                   a[i][j] = sc.nextInt();

               }

           }

           System.out.println("original Matrix:");

           // print the original matrix

           for (i = 0; i < m; i++) {

               for (j = 0; j < n; j++) {

                   System.out.print(a[i][j] + " ");

               }

               System.out.println("");

           }

          // perform interchange

           for (j = 0; j < m; j++) {

               temp = a[j][j];

               a[j][j] = a[j][n - 1 - j];

               a[j][n - 1 - j] = temp;

           }

           System.out.println(

               " after interchanging diagonals of matrix ");

           // print interchanged matrix

           for (i = 0; i < m; i++) {

               for (j = 0; j < n; j++) {

                   System.out.print(a[i][j] + " ");

               }

               System.out.println("");

           }

       }

       // else block it's only execute when m is not equals

       // to n

       else {

           System.out.println("Rows not equal to columns");

       }

   }

}

Read more about java programming here:

brainly.com/question/18554491

#SPJ1

7 0
1 year ago
Other questions:
  • Which situation might cause potential hazards at a construction site?
    12·2 answers
  • Assuming the point estimate in Problem 6.36 is the true population parameter, what is the probability that a particular assay, w
    15·1 answer
  • I'm really bad at measurements so I don't understand this.
    12·1 answer
  • What's the best way to find the load capacity of a crane? Select the best option. Call the manufacturer Ask co-workers Look at t
    8·1 answer
  • Introduction to gear and gear ratios: If you have two gears of the same size does the output speed increase, decrease, or remain
    13·1 answer
  • An air standard cycle with constant specific heats is executed in a closed system with 0.003 kg of air and consists of the follo
    15·1 answer
  • What are your thoughts on physical education ?
    12·2 answers
  • PLEASE HELP ME!!!!!! 100 POINTS FOR HELPFUL ANSWERS + BRAINLIEST!!!!!
    14·2 answers
  • What additive keeps engines clean by preventing contaminants and deposits from collecting on surfaces?
    10·2 answers
  • The Texas Sure program is designed to:
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!