answersLogoWhite

0

The equation of a straight line is y = mx+b whereas m is the slope and b is the y intercept

User Avatar

Wiki User

7y ago

Still curious? Ask our experts.

Chat with our AI personalities

JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan
RossRoss
Every question is just a happy little opportunity.
Chat with Ross
SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve

Add your answer:

Earn +20 pts
Q: What is slope intercept form using m and amp b?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

How do you calculate percentage of profit using tally software?

Their are two ways select ratio analysis & tally gives you various ratios alternatively select profit & loss account Press F12 & select show percentages as yes and save


Can you put 4 subwoofers on 1 amp?

Yes you can depending on the wattage of the amp. i personally would only put two 12's on one amp. cause it will still bump hard!!(:


How many milliamps are there in an amp?

"milli" means a thousandth in the metric units of measurement. Thus 1000 milliamps = 1 amp.


How much power is consumed through a 3 amp?

-- If the 3 Amp is being drawn from a battery,then the battery is supplying3 x (Voltage of the battery) watts.-- If the 3 Amp is flowing through a resistor,then the resistor is dissipating9 x (Resistance of the resistor) watts.


Write a program using switch case to find the area of a square rectangle and a cylinder using functions?

# include # include int ch,r,a,h,d,l; float Ac, Ar, At; void main() { clrscr(); printf("\n press1,area of circle"); printf("\n press2,area of rectangle"); printf("\n press3,area of triangle"); printf("\n enter your choice"); scanf("%d",&ch); switch(ch) { case 1: printf("\n enter values to find area of circle"); scanf ("%d",&r); Ac = 3.14*r*r; printf("\n area of circle is %f",Ac); break; case 2: printf("\n enter values to find area of rectangle "); scanf("%d%d",&a,&h); Ar= a*h; printf("\n area of rectangle is %f",Ar); break; case 3: printf("\n enter values to find volume of cylinder"); scanf("%d%d",&d,&l); At = 0.5*d*l; printf("\n area of triangle is %f",At); break; DEFAULT: printf("\n enter the proper choice"); } getch(); }