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
Alecsey [184]
2 years ago
12

What is the tolerance for number 4?

Engineering
1 answer:
Firlakuza [10]2 years ago
8 0

Answer: 0.02 units or 20±0.02 units or 19.98-20.02 units

(all are the same)

Explanation:

says on the sheet. Unless otherwise stated 0.XX = ±0.02 tolerance

You might be interested in
Question 2: (a) In your own words, clearly distinguish and differentiate between Ethics in Engineering and Ethics in Computing (
zlopas [31]

Engineering ethics is not without abstraction, but in contrast with computing, it is animated by a robust and active movement concerned with the seamless identification of ethics with practice.

<h3 /><h3>What is engineering?</h3>

This is a branch of science and technology concerned with the design, building, and use of engines, machines, and structures that uses scientific principles.

Comparing ethics in engineering and ethics in computing:

  • Engineering ethics are a set of rules and guidelines. While computing ethics deals with procedures, values and practices.
  • In engineering ethics, engineers must adhere to these rules as a moral obligation to their profession While in computing ethics, the ethics govern the process of consuming computer technology.
  • Following these ethics for the two professions will NOT cause damage, but disobeying them causes damage.

Some practical examples in the computing field:

  • Avoid using the computer to harm other people such as creating a bomb or destroying other people's work.
  • Users also should not use a computer for stealing activities like breaking into a bank or company.
  • Make sure a copy of the software had been paid for by the users before it is used.

Some practical examples in the engineering field:

  • Integrity for oneself.
  • Respect for one another.
  • Pursuit of excellence and accountability.

Hence, Engineering ethics is the field of system of moral principles that apply to the practice of engineering and following them is important to the profession.

Read more about <em>engineering</em> here:

brainly.com/question/17169621

#SPJ1

7 0
2 years ago
You are in charge of ordering the concrete for a basement wall concrete pour. The wall forms are all set up and ready. The wall
choli [55]

Answer:

189.15cy

Explanation:

To understand this problem we need to understand as well the form.

It is clear that there is four wall, two short and two long.

The two long are \rightarrow 120ft5in+2(10ft)

The two long are \rightarrow 122ft1in=122.08ft

The two shors are \rightarrow 86ft4.5in = 86.375ft

The height and the thickness are 14ft and 0.83ft respectively.

So we only calculate the Quantity of concrete,

Q_c = [(2*122.08)+(2*86-375)]*14*0.833\\Q_c=4864.02ft^3

That in cubic yards is equal to 180.15 (1cy=27ft^3)

Hence, we need order 5% plus that represent with the quantity

Q_{ordered}=1.05*180.15=189.15cy

8 0
3 years ago
Tech a says the higher the numarical gear ratio (4:1), the more torque that will be applied to the wheels. Tech b says that the
Zepler [3.9K]

Answer:

Tech A

Explanation:

The amount of energy required to apply the same force with a 1:1 ratio is divided into 4, so you can apply 4 times as much force than a 1:1 ratio. efficiency and speed come into play here, but assuming the machine powering the gear can run at a unlimited RPM, 4:1 will have more force and a slower output speed than a 2:1 ratio.

3 0
3 years ago
Read 2 more answers
Birdie Par owns a company that makes golf gloves. She is thinking about introducing a new glove, which would require an addition
melamori03 [73]

Birdie's company will make a profit of $30,000 if she sells 3,000 gloves at the $15 price.

Step-by-step Solution:

Break even point= fixed cost/ selling price - variable cost

here the fixed cost is= $20,000

selling price= $15 and variable cost = $5

BEP= 20,000/ 15-5= 20,000/10= 2000 units

b. if they sell 3000 gloves, the contribution profit will be

total revenue= 3000*$15= $45,000

contribution= selling price- variable cost, 15-5= $10 per unit

the profit is= 3000*$10= $30,000

What is  variable cost?

A variable cost is one that varies in relation to either the volume of production or the number of services provided. There should be no variable costs if no production or services are provided. Variable costs should rise in tandem with increases in production or services.

To learn more about Profit Calculation, visit: brainly.com/question/28177180

#SPJ1

3 0
1 year ago
Write a program that prompts for a line of text and then transforms the text based on chosen actions. Actions include reversing
nlexa [21]

Answer:

public class TextConverterDemo

{

//Method definition of action1337

public static String action1337(String current)

{

//Replace each L or l with a 1 (numeral one)

 current = current.replace('L', '1');

 current = current.replace('l', '1');

 

 //Replace each E or e with a 3 (numeral three)

 current = current.replace('E', '3');

 current = current.replace('e', '3');

 //Replace each T or t with a 7 (numeral seven)

 current = current.replace('T', '7');

 current = current.replace('t', '7');

 //Replace each O or o with a 0 (numeral zero)

 current = current.replace('O', '0');

 current = current.replace('o', '0');

 

//Replace each S or s with a $ (dollar sign)

 current = current.replace('S', '$');

 current = current.replace('s', '$');

 return current;

}

//Method definition of actionReverse

//This method is used to reverses the order of

//characters in the current string

public static String actionReverse(String current)

{

 //Create a StringBuilder's object

 StringBuilder originalStr = new StringBuilder();

 //Append the original string to the StribgBuilder's object

 originalStr.append(current);

 //Use reverse method to reverse the original string

 originalStr = originalStr.reverse();

 

 //return the string in reversed order

 return originalStr.toString();

}

//Method definition of main

public static void main(String[] args)

{

    //Declare variables

 String input, action;

 

 //Prompt the input message

 System.out.println("Welcome to the Text Converter.");

 System.out.println("Available Actions:");

 System.out.println("\t1337) convert to 1337-speak");

 System.out.println("\trev) reverse the string");

 System.out.print("Please enter a string: ");

   

 //Create a Scanner class's object

 Scanner scn = new Scanner(System.in);

 

 //Read input from the user

 input = scn.nextLine();

 do

 {

  /*Based on the action the user chooses, call the appropriate

   * action method. If an unrecognized action is entered then

   * the message "Unrecognized action." should be shown on a

   * line by itself and then the user is prompted again just

   * as they were when an action was performed.

   * */

  System.out.print("Action (1337, rev, quit): ");

  action = scn.nextLine();

  if (action.equals("1337"))

  {

   input = action1337(input);

   System.out.println(input);

  } else if (action.equals("rev"))

  {

   input = actionReverse(input);

   System.out.println(input);

  } else if (!action.equals("quit"))

  {

   System.out.println("Unrecognized action.");

  }

 } while (!action.equals("quit"));

 System.out.println("See you next time!");

 scn.close();

}

}

7 0
3 years ago
Other questions:
  • Steam flows at steady state through a converging, insulated nozzle, 25 cm long and with an inlet diameter of 5 cm. At the nozzle
    11·1 answer
  • Using any of the bilinear transform, matched pole-zero, or impulse invariance techniques in converting a continuous-time system
    14·2 answers
  • A large part in a turbine-generator unit operates near room temperature and is made of ASTM A470-8 steel ( ). A surface crack ha
    11·1 answer
  • Block B starts from rest, block A moves with a constant acceleration, and slider block C moves to the right with a constant acce
    11·1 answer
  • For what two reasons do countries specialize? Countries specialize so that opportunity costs can be increased. Countries special
    13·1 answer
  • Explain why the scenario below fails to illustrate an understanding of the importance of metrology. Situation: Natalie is a cali
    6·1 answer
  • The two pond system is fed by a stream with flow rate 1.0 MGD (million gallons per day) and BOD (nonconservative pollutant) conc
    15·1 answer
  • 1. Which of the following is the ideal way to apply pressure onto pedals?
    14·2 answers
  • The van der Waals equation is a modification of the ideal gas equation. What two factors does this equation account for? A. (1)
    6·1 answer
  • Alguém para conversa
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!