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
alex41 [277]
3 years ago
11

11. Which of the following is the brake fluid most often used?

Engineering
2 answers:
Olenka [21]3 years ago
4 0
Dot 3 is mostly used in a lot of v4 and v6
Nadya [2.5K]3 years ago
4 0

Answer:

B. DOT 3

Explanation:

The braking system of a vehicle uses hydraulic power generated by a master cylinder to activate the four-wheel brake assemblies.  The hydraulic power is transmitted throughout the brake system via brake fluid.  Brake fluid is made from  a silicone based or glycol based product.  .The three classes of brake fluid commonly used in modern automobiles are as follows:

DOT 3, DOT 4, and DOT 5. DOT stands for

Department of Transportation specification grades; the increasing numbers corresponds to increasing boiling point. DOT 3 and DOT 4 are glycol based, and  DOT 3 most commonly used in disc brake systems. The glycol base is hygroscopic means it attract water from the environment.

brake fluid should be disposed properly. it should not be exposed to fire as this mit pose a ue fire hazard. t shouldn't be thrown into septic tanks.

You might be interested in
You’re going to write a program that models the Littleton City Lotto (not a real Lotto game). The program is going to allow to u
sveta [45]

Answer:

Explanation:

// Include the required

// header files.

#include <iostream>

#include <cstdlib>

#include <iomanip>

#include <ctime>

#include <string>

// Use the

// standard namespace.

using namespace std;

// Define the function NoDuplicates(),

// to check whether a value is already

// present in an array or not.

int NoDuplicates(int arr[], int size, int val)

{

// Run the loop to

// traverse the array.

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

{

// If the value is already present

// in the array, return 0.

if(arr[i] == val)

{

return 0;

}

}

// Otherwise, return 1.

return 1;

}

// Define the function getLottoPicks().

void getLottoPicks(int UserTicket[])

{

int currNum;

//

// Run the oop to get 7

// numbers from the user.

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

{

// Prompt the user

// to enter the number.

cout << "Please enter number "<<i+1<<":";

// Read and store

// the number.

cin >> currNum;

// Run the loop till the

// entered number is valid.

while(true)

{

// If the number is out of range,

// display an error message.

if(currNum>40 || currNum<1)

{

cout << "The number must between 1 and 40. ";

}

// Otherwise, if the number is

// already present in the array,

// display an error message.

else if(NoDuplicates(UserTicket, i, currNum) == 0)

{

cout << "No duplicate numbers are accepted. ";

}

//Otherwise if the number is valid,

// break out of the loop.

else

{

break;

}

// If the number was invalid,

// prompt the user to enter the number again.

cout << "Please enter another number:"<<endl;

cin >> currNum;

}

// Store the number in the array.

UserTicket[i] = currNum;

}

}

// Define the function GenWinNums().

void GenWinNums(int WinningNums[7])

{

int currNum;

// Run the loop to

// generate 7 numbers.

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

{

// Generate a random number

// in the range 1-40.

currNum = (rand()%40) + 1;

//Run the loop till the

// generated number is valid.

while(NoDuplicates(WinningNums, i, currNum) == 0)

{

// If the generated number was

// a duplicate, generate another number.

currNum = (rand()%40) + 1;

}

// Store the number in the array.

WinningNums[i] = currNum;

}

}

// Define the function getWinnings().

string getWinnings(int numMatches)

{

// Return the winnings as

// per the number of matches.

switch(numMatches)

{

case 0:

case 1:

case 2:

return "SORRY NOTHING";

case 3:

return "FREE TICKET";

case 4:

return "NOT BAD - $100";

case 5:

return "LUCKY YOU! - $5,000";

case 6:

return "GREAT! - $100,000";

case 7:

return "JACKPOT - 1 MILLION";

}

return "Invalid Matches";

}

// Define the function displayResults().

void displayResults(string name, int UserTicket[], int WinningNums[])

{

int numMatches = 0;

string winnings;

// Run the loop to convert

// the name to uppercase.

for(int i=0; i<name.size(); i++)

{

name[i] = toupper(name[i]);

}

// Run the loop to find

// the number of matches.

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

{

for(int j=0; j<7; j++)

{

if(UserTicket[i] == WinningNums[j])

{

numMatches++;

break;

}

}

}

// Get the winnings as per

// the number of matches.

winnings = getWinnings(numMatches);

// Display the results.

cout << endl

<< name << "'s LOTTO RESULTS" << endl;

cout << "------------------------"<<endl;

cout << "WINNING TICKET NUMBERS:";

// Run the loop to display

// the winning numbers.

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

{

cout << setw(3) << WinningNums[i];

}

cout << endl;

cout << setw(13) << name << "'s TICKET:";

// Run the loop to display

// the user ticket.

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

{

cout << setw(3) << UserTicket[i];

}

cout << endl;

cout << "RESULTS:"<<endl;

cout << "--------"<<endl;

cout << "Number Matches: " << numMatches << endl;

cout << "Winnings : " << winnings << endl

<< endl;

}

// Define the

// function menu().

void menu()

{

cout << "LITTLETON CITY LOTTO MODEL:"<<endl

<<"---------------------------"<<endl

<<"1) Play Lotto"<<endl

<<"q) Quit Program"<<endl

<<"Please make a selection:"<<endl;

}

// Define the

// main() function.

int main() {

// Set the random seed.

srand(time(NULL));

// Define an array to store

// the user ticket.

int UserTicket[7];

// Define an array to

// store the winning numbers.

int WinningNums[7];

char userChoice = '0';

string name;

// Run the loop till

// the user wants to quit.

while(userChoice != 'q')

{

// Display the menu.

menu();

// Read and store

// the user choice.

cin >> userChoice;

// Perform the required action

// as per the user choice.

switch(userChoice)

{

case '1':

cout << "Please enter your name:"

<< endl;

cin >> name;

getLottoPicks(UserTicket);

GenWinNums(WinningNums);

displayResults(name, UserTicket, WinningNums);

break;

// If the user chooses to quit,

// display a message.

case 'q':

cout << "Thank you for"

<<" using the program."<<endl;

break;

// Display an error message

// for invalid selection.

default:

cout << "Invalid selection."

<< endl;

}

}

// Return from

// the main() function.

return 0;

}

8 0
3 years ago
1)A wheel is used to turn a valve stem on a water valve. If the wheel radius is 1 foot and the stem, (axle), radius is .5 inches
Novay_Z [31]

Answer:

1.) 2.4

2.) 112 lbs

3.) 7.85 inches

4.) 6 lbs

5.) 2 lbs

6.) 67%

Explanation:

Given that

Radius of the wheel R = 1 foot

1 foot = 12 inches.

Radius of the axle r = 5 inches

1.) The mechanical advantage MA is :

MA = R/r = 12/5 = 2.4

2.) How much resistance force can ideally be overcome when an effort of 80 lbs is applied to the wheel of the water valve in problem 1?

MA = Load / effort

Where effort = 80 lbs

Substitute MA and effort into the formula

2.4 = Load / 80

Cross multiply

Load = 2.4 × 80 = 192 lbs

The resistance force to be overcome will be

Force = load - effort

Resistance force = 192 - 80 = 112 lbs

3) What is the linear distance traveled when a 2.5' diameter wheel makes one revolution

One revolution = 2π

Radius = 2.5 /2 = 1.25 inches

Linear distance S = angular distance Ø × radius r

S = Ør

S = 2π × 1.25

S = 7.85 inches

4. ) given that

Wheel radius R = 4

Axle radius r = 1

MA = 4/1 = 4

MA = Load / effort

4 = 24/ effort

Effort = 24/4 = 6 lbs

5.) 6 - 4 = 2lb

6.) Efficiency = MA / VR × 100

Efficiency = 4 / 6 × 100

Efficiency = 67%

3 0
3 years ago
Choose the correct word or phrase to complete the sentence to explain human intervention in a machine system.
maksim [4K]

Answer:

Fully Automated

Periodic Maintenance Activities

6 0
3 years ago
For the Mohr's circle of a plane-strain element, which of the following changes as a result of shear strain change?
OverLord2011 [107]

Answer:

B

Explanation:

only the radius of the circle as a result of shear strain change.

3 0
3 years ago
What did August Comte contribute to sociology including positivism
Travka [436]

Answer:

Auguste Comte was the first to develop the concept of "sociology." He defined sociology as a positive science. Positivism is the search for "invariant laws of the natural and social world." Comte identified three basic methods for discovering these invariant laws, observation, experimentation, and comparison.

Explanation:

I hope it's help u :)

4 0
3 years ago
Other questions:
  • Suppose you are designing a sliding window protocol for a 1 Mbps point-to-point link to the moon, which has a one-way latency of
    10·1 answer
  • The Bureau of Labor and Statistics predicted that the field of biomedical engineering would increase by 62 percent over the comi
    10·1 answer
  • An incompressible fluid flows along a 0.20-m-diameter pipe with a uniform velocity of 3 m/s. If the pressure drop between the up
    15·1 answer
  • when a metal, such as lead, is oxidied (loses electrons) to form a positive ion (cation), how does he solubility change?
    14·1 answer
  • A. Derive linear density expressions for BCC [110] and [111] directions in terms of the atomic radius R.
    7·1 answer
  • What differentiates the master builder approach prior to the Renaissance from later approaches? Projects do not depend on indivi
    14·1 answer
  • Which organisms are consumers in this food chain? List all that apply. *
    5·1 answer
  • Which of the following can not be used to store an electrical charge?
    11·1 answer
  • Develop a simple Business plan as an entrepreneur​
    5·1 answer
  • Deviations from the engineering drawing cannot be made without the approval of the
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!