In disc brakes, pads are forced against the of a brake disc​

Answers

Answer 1

Answer:

Explanation:

It's the surface the brake pads contact. When you step on the brakes, pressurized brake fluid pushes against the pistons inside the caliper, forcing the brake pads against the rotor. As the brake pads press against both sides of the disc, the friction stops the wheel's rotation.


Related Questions

test case Exercise 1: Consider the following system: A System reads four integer values from a user. The four values are interpreted as representing the lengths of the sides of quadrilateral shape. The system prints a message that states whether the shape is rectangle or square. Function: Description: Test Input Data:

Answers

The program displays if the side values of the quadrilateral is a square or rectangle. The required program is written in python 3 thus :

a = int(input('Enter integer input : '))

b = int(input('Enter integer input : '))

c = int(input('Enter integer input : '))

d = int(input('Enter integer input : '))

#the variables a, b, c, d takes prompt values from users which are used to compare if the quadrilateral is a square or rectangle.

if(a == b == c == d):

#using the assignment operator, compare the value of a, b, c and d

print('Shape is square')

#if the values are the same, the shape is a square

else :

print('Shape is Rectangle')

#otherwise, the shape is a rectangle

The sample run of the program is attached below.

Learn more : https://brainly.com/question/18405415

How will you select the range of cells in excel . ​

Answers

Answer:

just left click the cell that you want and drag your mouse towards how much you want to select I guess

Answer:

To select a range, select a cell, then with the left mouse button pressed, drag over the other cells. Or use the Shift + arrow keys to select the range. To select non-adjacent cells and cell ranges, hold Ctrl and select the cells.

Explanation:

Define computer software with its importance in computer system​

Answers

Answer:you just answered my question saying can't help you well i can't help you either

Explanation:

Computer software refers to a collection of programs, data, and instructions that enable a computer to perform various tasks and functions.

It includes both operating systems that manage computer resources and application software used for specific tasks like word processing, web browsing, and gaming.

Software is crucial in a computer system as it acts as the bridge between hardware and users, allowing them to interact with the machine effectively.

Without software, computers would be unable to process data, execute commands, or perform any tasks.

It empowers users with a wide range of functionalities, making computers versatile tools for work, entertainment, communication, and problem-solving in various domains of modern life.

Know more about Computer software:

https://brainly.com/question/33933985

#SPJ5

PLEASE HELP! WILL MARK AS BRAINLIEST!
JavaScript can be implemented using the _________ HTML tags in a web page.

Answers

Answer:

JavaScript can be implemented using JavaScript statements that are placed within the HTML tag

Explanation:

Answer:

statements placed within script tags

Explanation:

* what is an electronic mail ?

= Electronic mail is a method of exchanging messages between people using electronic devices. Email entered limited use in the 1960s, but users could only send to users of the same computer, and some early email systems required the author and the recipient to both be online simultaneously, similar to instant messaging.​

Answers

Answer:

Electronic mail is a method of exchanging messages between people using electronic devices. Email entered limited use in the 1960s, but users could only send to users of the same computer, and some early email systems required the author and the recipient to both be online simultaneously, similar to instant messaging.

Coordination in a global information system requires a _____ architecture for data, standardization within departments.

Answers

Coordination in a global information system requires a decentralized architecture for data, standardization within departments

how are digital computer classified on different types​

Answers

Answer: we can sub-categorize digital computers as General Purpose Computer & Special Purpose Computer.

After determining that a printer is unable to print in red ink, you replace the magenta cartridge. Upon attempting to print again, you discover the problem still exists. What would be the NEXT logical step

Answers

Answer:

Make sure your yellow cartridge also has ink.  

Explanation:

Also make sure yellow cartridge also has ink. Mixture of Mag and Yellow will give you red.  If still does not work, depending upon your printer, try going to the setup and try running Print Quality diagnostics.  Run it few times and see if it helps.

The logical step that follows with the replacement of the magenta cartridge for not printing the red ink is the cleaning of the printer head.

What is the function of a printer?

The Printer is used to transfer the graphics output from the system and create the output to the paper. It uses a cartridge to perform the printing with the help of ink.

The printer uses the ink in the cartridge to form the representation of the color on the paper. In case the red ink is not printable, and the issue did not get resolved with the change in the magenta cartridge, the next logical step involves the cleaning of the printer head.

Learn more about the cartridge, here:

https://brainly.com/question/13504303

#SPJ2

to allow excel to change the cell references in a formula or function from row to row or column to column as you fill with it, you must use an ________.

Answers

to allow excel to change the cell references in a formula or function from row to row or column to column as you fill with it, you must use an formula cells.

You must utilize a cell formula to allow excel to modify the cell references in a formula or function between row to row or column to column as you fill it out.

Cell formula and Excel:

A cell reference is a name for a cell or a group of cells on a worksheet that may be used in a formula to tell Microsoft Office Excel where to look for the values or data that the calculation should compute.

The cell function in Excel returns data about a cell in a spreadsheet. info type specifies the type of information to be returned.

Cell may obtain information such as the cell's address and filename, as well as specific information about the cell's formatting.

Find out more information about 'Cell formula'.

https://brainly.com/question/26988565?referrer=searchResults

Is it always best for a company to make decisions based on data, or are there some situations where they should not focus on data?

Answers

Answer:

data-driven decision

Explanation:

While 91% of companies say that data-driven decision-making is important to the growth of their business, only 57% of companies said that they base their business decisions on their data. Data-driven decision-making is a great way to gain a competitive advantage, increase profits and reduce costs!

why are extensions necessary in scratch programming as a whole?​

Answers

Scratch extensions are vital for scratch to interface with the external hardware and information.

Scratch simply means a free programming language where an individual can create their own interactive stories.

It's simply the world's largest coding community for children. Scratch extensions are vital for scratch to interface with the external hardware and information.

Read related link on:

https://brainly.com/question/15418798

explain about cyber terrorism​

Answers

Explanation:

cyber terrorism is type of hacking group with give the country that are to illegal group

In Linux, most applications and commands are in the ____ directory or its subdirectories bin and sbin.

Answers

On a Linux computer, most of the software applications are saved in the /usr directory or in its subdirectories named, bin and sbin.

A Linux can be defined as an open-source and community-developed operating system (OS) that is designed and developed for the following electronic devices:

Mainframes. Computers.Embedded systems.Mobile devices.

Generally, the Linux operating system (OS) is based on UNIX and it is typically released under the GNU general public license (GPL).

On a Linux computer, the commonly used directory for saving most software applications is the /usr directory or sometimes its subdirectories named, bin and sbin.

Read more: https://brainly.com/question/20629962

Write a function that will receive 5 numbers from a user (inputted one at a time-- use reassignment!) and will count then print how many of the numbers are odd.

Answers

The program is an illustration of loops.

Loops are used to perform repetitive operations

The function in Python where comments are used to explain each line is as follows:

#This defines the function

def count_odd(mylist):

   #This initializes the count variable to 0

   count = 0

   #This iterates through the list

   for i in mylist:

       #This checks if the current list element is not even

       if not i%2 == 0:

           #If yes, this increments the count variable by 1

           count+=1

   #This returns the count of odd numbers

   return(count)

Read more about similar programs at:

https://brainly.com/question/18269390

PLEASE HELP! WILL MARK AS BRAINLIEST JavaScript can be implemented using the _________ HTML tags in a web page.​

Answers

Answer:

JavaScript can be implemented using JavaScript statements that are placed within the ...  HTML tag

Explanation:

How can she change that value so it is reflected in the chart in her presentation?

Answers

Answer:

She can change the value in the mini- spreadsheet for the chart in PowerPoint.

Explanation:

Answer:

What she said above or below me

Explanation:

: Describe the type of gameplay seen during early video games (ex. Spacewar!, Pong).

Answers

Answer:

Computer scientists began building rudimentary games and simulations on mainframe computers in the 1950s and 1960s, with MIT's Spacewar! in 1962 being one of the first such games to be played with a video display. The first consumer-ready video game hardware arrived in the early 1970s, with the Magnavox Odyssey, the first home video game system, and the first arcade video games from Atari, Computer Space and Pong, the latter of which was later transformed into a home console version. Pong's success in arcades and at home prompted numerous firms to create clones of the game, resulting in a market contraction in 1978 owing to oversaturation and a lack of innovation.

What is the output of the statements below? int a = 10; int b = 20; int count = 0; if (a > 5) if (b > 5) { count ++; } else count = 7;

Answers

Answer:

The output of count would be 1.

Explanation:

The first if statement is true. Since 10 > 5

The second if statement is true. Since 20 > 5

So,

count ++;  // That increments the variable count by 1

the else statement is not provoked since the if statements were correct.

to determine the highest number in a range of numbers, click insert function box in the formula bar to display the insert function dialog box, then select ____.

Answers

Functions in Excel are used to perform several arithmetic and logical operations.

The text that completes the statement is MAX

From the question, we understand that you want to determine the highest number in a given range of numbers.

This is done using the MAX function.

i.e. after the insert function box has been selected, the formula to use is the MAX function.

Hence, the complete statement is:

Click insert function box in the formula bar to display the insert function dialog box, then select MAX.

Read more about Excel functions and formulas at:

https://brainly.com/question/20497277

Which invention provided instant communication and information to a massive audience for the first time? a. Intranet c. Video b. Television d. Internet Please select the best answer from the choices provided A B C D.

Answers

Answer:

B. television

Explanation:

Answer:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb

Explanation:

Imagine that your parents were starting a small business, and they wanted to upgrade their data storage. Would you recommend a fileserver, network
attached storage, or the cloud?
Why?
What are some possible disadvantages of your recommendation that they should be aware of?

Answers

Answer:

I would recommend the cloud because they can access their data on every single device. There are virtually no disadvantages to the cloud.

Explanation:

Hope this helps.

CODEHS 3.5.4 Obi-Wan Says



You should ask the user for three pieces of information

You should confirm their name and how many droids and Wookiees they want to meet

You should confirm their name and how many droids and Wookiees they want to meet

Answers

The program receives inputs for the name, number of droids and wookiees a user wants and displays the information as a complete sentence. The program written in python 3 goes thus :

name = input('Enter name : ')

# prompts user of name

num_droid = int(input('number of droids : '))

#prompts for number of droids

num_wooks = int(input('number of wookiees : '))

#prompts for number of wookiees

print(name, ' wants to meet', num_droid, 'droids and',num_wooks , 'Wookiees' )

#displays the information as a complete sentence

A sample run of the program is attached

Learn more : https://brainly.com/question/25506437

How do people get in your computer

Answers

Answer:

????

Explanation:

This is absurd, you cannot enter your computer. it is to tiny for you to fit in.

Answer:

Explanation:

I don’t know

What is the difference between Label and value in excel?

Answers

Answer:

The main difference between the label and the value is that the label is what you see within the system itself (or also on the web form if the field can be used in such a feature). ... The value, on the other hand, is what systems read as the name of a field.

Hope it help and if it its correct please give brainliest  

Stay Safe And Healthy  

Thank You

Usually a ________ in Java code indicates the end of a data structure. Group of answer choices backslash character forward slash character null reference null pointer

Answers

Answer:

null reference.

Explanation:

Your customer said that understanding the directions is difficult. This is an aspect of

Answers

Answer:

Usability

Explanation:

The degree to which a program meets the needs of a user, including but not limited to learnability, reliability, and ease of use

how many pokemon games have you all played i've played 14

Answers

Answer: Too much to count.

Explanation:

so i've played
Pokémon Brilliant Diamond
Pokémon Unite
Pokémon Café Mix
Pokémon Sword and Shield
Pokémon Masters EX
Pokémon: Let's Go, Pikachu!
Pokémon Quest
Pokémon Ultra Sun
Pokémon: Magikarp Jump
Pokémon GO
Pokémon Omega Ruby
Pokemon X
Pokémon Black and White
Pokémon HeartGold
Pokémon Battle Revolution
Pokémon FireRed
and Pokémon Stadium
so 19 individual games

1) The critical path of a network is the A) shortest time path through the network. B) path with the fewest activities. C) path with the most activities. D) longest time path through the network. E) None of the above

Answers

Answer:

D

Explanation:

source

https://hbr.org/1963/09/the-abcs-of-the-critical-path-method

Emilie is reviewing a log file of a new firewall. She notes that the log indicates packets are being dropped for incoming packets for which the internal endpoint did not initially create the request. What kind of firewall is this

Answers

Firewalls are used to screen and avoid block the threat posed by unwanted data or files that could want to penetrate into a system. Hence, the kind of firewall described is packet filtering firewall.

Packet filtering firewall describes a network security protocol which examines individual data packets entering into a system.

Each data packet is screened based on established principles and protocols, with only those who meet the defined requirement allowed to reach their destination while others are dropped.

Hence, the missing phrase is packet filtering firewall.

Learn more : https://brainly.com/question/25706522

Apple computers ship their computer parts to India to be made, and station their tech support in India. This is an example of a:

Answers

Companies are known to set up different branches. This is an example of a Global assembly line.  

An assembly line is known to be a production process that breaks down the manufacture of goods into different steps that are completed in a known sequence.

These lines are often used method in the mass production of products as they reduce labor costs.

Global Assembly Line  is simply known as distributed manufacturing method that entails the product research and development in wealthy countries and assemblage in poorer countries.

Learn more from

https://brainly.com/question/2954967

Answer:

Shipping?

Explanation:

No options sooo

Other Questions
a type of infrastructure that state governments maintain is Need help on 2 will give brain list Which equation represents the data in the table shown?A) y = -2xB) y = 2x + 3C) y = -2x + 3D) y = -2x - 3 PLZ HELP DUE TONIGHT! What role did John C. Frmont play in establishing an American presence in California? Lan likes eating junk food............... her sitter likes vegetables and fishA.or B.so C.but D.and PLEASE HELP ME SOLVE YOULL GET BRAINLY AND POINTS4m-k=m;for m How did the NRA try to avoid being labeled socialist? Determine whether the rate of change is constant. Choose the correct answer below. why does mars have more extreme seasons than earth? place the decimal point in the product 1. 6.178.2=505942. 24.018.51=20432513. 8.945.27=471138 which one of the congruency statements are true? Which of the following numbers is closest to 9? O A. v79 O B. 778 O c. 783 O D. 782 Cuando empieza la cultura de Mxico segn Lucas Aleman? I need the answers to the ones with an x by them please and thank you guys I really need this Its home work community service is almost always performed____. Evaluate the expression 61 Write an equation for a rational function with:Vertical asymptotes at x = -5 and x = 3x-intercepts at x = -4 and x = -3y-intercept at 3 How does Tan build a central idea of her story in the excerpt? Tan references her writing career to build the idea that writing is the most satisfying career choice for Asian Americans. Tan references her work with language to build the idea that all forms of English are purposeful and meaningful. Tan references her fascination with language to build the idea that daily life is the best language source for writers. Tan references her thoughts about language to build the idea that more people should think about their language usage. what is the full meaning of the following acronyms:ARPANET, BOOTP, GSM, GUI, EOM, EULA, CTSS. What is the y-intercept of a line that has a slope of -3 and passes through point (-5, 4)? a) -17 b) -11 c) 7 d) 19