What type of tool would be used to tighten a nut or bolt with an exact amount of twisting force?a. Torque wrench
b. Torx wrench
c. Open-end wrench
d. Box-end wrench

Answers

Answer 1
Answer: The answer is (a.) Torque wrench

To tighten a nut or bolt with an exact amount of twisting force, you must you torque wrench. By using this tool, you can apply a specific torque to a fastener. The tool was invented by Conrad Bahr in 1918 in New York.

Related Questions

All of the following are aspects of the search process except?
Yolanda is making a banner for a school pep rally. She cuts fabric in the shape of a parallelogram. The angle at the bottom left corner measures 80°. what The measure of the angle at the top left corner must measure?
The seven basic parts of a computer are
A _____ links computer resources using either a wired or wireless connection? 1. hardware system 2. software system 3. network 4. printer
Ward Cunningham is credited with what action in the history of wikis?A.He funded the first wiki with a grant of $1,000,000 in 1996.B.He sought permission from Britannica to transfer their knowledge onto wikis in 1997.C.He singlehandedly programmed the first wiki in 1996.D.He conceptualized the working of a wiki in 1994.

What are the determinants of price elasticity of demand?​

Answers

Answer:

The four factors that affect price elasticity of demand are (1) availability of substitutes, (2) if the good is a luxury or a necessity, (3) the proportion of income spent on the good, and (4) how much time has elapsed since the time the price changed.

Explanation:

Answer:

https://youtu.be/TfNSnjeC1XE

Explanation:

Te recomiendo este video, es muy completo.

Write a program to convert a person's height in inches into centimetres #and their weight in stones into kilograms. (1 inch = 2.54 cm and 1 stone = 6.364 kg)

Answers

Following are the program to convert height and weight values:

Program:

#include <iostream>//header file

using namespace std;

int main ()//main method

{

  double height, weight,h,w; //defining a doubale variable

  cout<<"Following are the converter of Weight and height: "<<endl;//print message

  cout<<"Enter the height in inches: ";//print message

  cin>>height;//input value

  cout<<"Enter the weight in stones: ";//print message

  cin>>weight;//input value

  h=height* 2.54;//converting height value into centimetres and holding its value in h variable

  w= weight* 6.364;//converting weight value into kilograms and holding its value in w variable

  cout<<"The converted height is "<<h<<" cm."<<endl;//printing the converted value

  cout<<"The converted weight is "<<w<<" kg."<<endl;//printing the converted value

  return 0;

}

Program Explanation:

  • Defining header file.
  • Defining the main method.
  • Inside the main method defining four double variables that are "height, weight, h, and w".
  • Inside this, the "height, weight" variable is used for input value is the from user-end, and "h, w" is used to convert height and weight value into centimeters and kilograms.
  • After converting the value using the print method that prints its values.

Output:

Please find the attached file.

Find out more information about the conversion here:

brainly.com/question/26240757

(Using python)

When running:

measure(the height you want to enter, the weight you want to enter)

When the input is printed you have to re-enter the data (couldn’t fix that)

It will print the conversions as a result

Predict the output int x[]={8,5,0,1,3}; .println( (x[1],x[2]));

Answers