Answer: Plug and play
Explanation:
Adding a new hardware to the computer activate the plug and play module of the operating system which installs the hardware device into the computer and enables us to use it immediately.
The socket which Intel recommends that one should use with a liquid cooling system is LGA 2011. LGA 2011, also known as socket R is a CPU socket manufactured by Intel. It was released into the market in November 2011 and it replaced LGA 1366 and LGA 1567 in the performance and high end desk tops and server platforms. Socket R has 2011 pins that touch contact points on the underside of the processor.
Answer:
# Solve the quadratic equation ax**2 + bx + c = 0
# import complex math module
import cmath
a = 1
b = 5
c = 6
# calculate the discriminant
d = (b**2) - (4*a*c)
# find two solutions
sol1 = (-b-cmath.sqrt(d))/(2*a)
sol2 = (-b+cmath.sqrt(d))/(2*a)
print('The solution are {0} and {1}'.format(sol1,sol2))
Hope This Helps!!!
Yes because it’s the square size of life
The place where Shreya will find these options is option b: Design tab, Merge group.
<h3>What is the Design tab?</h3>
The Design tab is known to be one that is made up of table formatting, cell as well as the table borders.
It is one that has the features of arranging the table on the page, as well as the size of the table.
Hence, The place where Shreya will find these options is option b: Design tab, Merge group.
Learn more about Design tab from
brainly.com/question/2501083
#SPJ1