The equation of a straight line is y = mx+b whereas m is the slope and b is the y intercept
Chat with our AI personalities
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
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!!(:
"milli" means a thousandth in the metric units of measurement. Thus 1000 milliamps = 1 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.
# 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(); }