The one which is used to enter or display one complete row of information in a range or table without scrolling horizontally is database tool.
<h3>What is Microsoft Excel?</h3>
Microsoft Excel is the electronic sheet in which the data can be arranged and saved for the future use. This data in a Microsoft excels arranged in the rows and the column of the Microsoft Excel.
The options given in the problem are,
- Create-With the help of create tool the, the user can create and control the content.
- Home-Home menu has many tools to perform different calculations effectively.
- External Data-The data, which is outside of the sheet, is called the external data.
- Database Tools-The database tools has the different tools associated with it, to perform the task related to administration. With tool help to enter or display one complete row of information in a range or table without scrolling horizontally is database tool.
The one which is used to enter or display one complete row of information in a range or table without scrolling horizontally is database tool.
Learn more about the Microsoft excel here;
brainly.com/question/1538272
A negative impact because it makes u not focus on the road
I can’t see the following tags that he could’ve possibly used
lst = input("Enter a,b,c: ").split(",")
a = float(lst[0])
b = float(lst[1])
c = float(lst[2])
root1 = (-b + ((b**2-(4*a*c))**0.5))/(2*a)
root2 = (-b - ((b**2-(4*a*c))**0.5))/(2*a)
dis = b**2 - (4*a*c)
if dis > 0:
print("The roots are {} and {}".format(root1, root2))
elif dis < 0:
print("The equation has no real roots")
else:
print("The root is {}".format(root1))
I wrote my code in python 3.8. I hope this helps!