answersLogoWhite

0

What is 25 div by -5?

User Avatar

Anonymous

14y ago
Updated: 8/19/2019

25/(-5) = -5

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the smallest number that can be divided by 2 3 5 6 and 9?

90 Do 9*5*2 If div by 9, its div by 3 If div by 2 and 3 its div by 6 its div by 2,5 and 9 because we mutiplied those


How many numbers from between 0 or 999 are not divisible by either 5 or 7?

a) first find how many numbers are divisible by 5 and 7 separately add them and subtract that are divisible by both 7 and 5 ie 35.the result subtract from 1000 to get the answer to your first question nos. divisible by 5 . last no. div by 5 is 995 .hence we have 995 = 0 + ( n-1) 5 which gives 200 . last no div by 7 is 994 .hence 994 = 0+ ( n-1) 7 which gives n = 143 . nos div by both 5 and 7 .last no div by 35 is 980. 980 = 0+ (n-1) 35 which gives n= 29 hence there are 200+ 143- 29 = 314 numbers div by 5 or 7 a) not div by 5or 7 = 1000- 314 = 686 b)div by 5 and7 =29 c) div by 5 or 7 = 314 d) div by 5 and not by 7 = 200-29 = 171 so answer is 686 Amit singh


How can you use div under div?

It's not that hard. If this is what you mean: <div> <div> <h1>Some content</h1> </div> </div>


How can you see the php code that is executed in your browser?

May be this example will help. Please focus on where ob_implicit_flush(true) and ob_end_flush(); are placed in your code. Version 1:-------------------------------- <?PHP ob_implicit_flush(true); ob_end_flush(); ?> e <div>a<div>a</div> <?PHP sleep(1); ?> <div>b</div> <?PHP sleep(1); ?> c</div> Version 2:------------------------------ <?PHP ob_implicit_flush(true); ob_end_flush(); ?> e<div>a<div>a</div></div> <?PHP sleep(1); ?> <div>b</div> <?PHP sleep(1); ?> c</div> Version 3:------------------------------ <?PHP ob_implicit_flush(true); ob_end_flush(); ?> e<div>a<div>a</div><!--</div>--> <?PHP sleep(1); ?> <div>b</div> <?PHP sleep(1); ?> c</div> ?>


What is 35 div ion by 7?

35 divided by 7 is 5.


How do you divide 16 by 5 show work?

To divide 16 by 5, you can set it up as a division problem: ( 16 \div 5 ). When you perform the division, 5 goes into 16 three times (since ( 5 \times 3 = 15 )). This leaves a remainder of 1, so you can express the result as ( 3 ) with a remainder of ( 1 ), or as a decimal ( 3.2 ) (since ( 1 \div 5 = 0.2 )). Thus, ( 16 \div 5 = 3.2 ).


What is .5 divide by 7.45 with no remaindersDecimal Division?

.5 divide by 7.45 with no remaindersdecimal div = 0.06711409395973154


Div class tags for HTML?

<div>hjghj<div> is a layer


What is the Perimeter of a 4 X 6 square?

This is a trick question. A square by definition has four equal sides, therefore it cannot measure 4 x 6. A geometrical figure having four sides, right angles, and measuring 4 x 6 would be called a rectangle, not a square. And it would have a perimeter of 20. <p></p><p> </p>The definition of a square is that all four sides are equal.<div><br></div><div>Therefore your 4x6 is a rectangle, and not a square.</div><div><br></div><div>Perimeter would therefore be</div><div><br></div><div>4+6+4+6= 20.<div></div><div><br></div><div>Total all four sides of the rectangle. </div></div>


How do you float a div?

<div style="float:left;">content</div> OR <div style="float:right;">content</div> I've attached a link that explains how this works in more detail.


How do you post in blogger using HTML?

<div id="header"> <div id="footer"> <div id="content"> <div id="sidebar"> <div class="post">


Can you use different divs in the background 'body' div without disturbing the overall flow of the 'container' div?

Yes, the easiest way to do this is to change the z-index of the div so it is generated on a different layer. An example you could do is below: <div style='position:absolute;z-index:-1;'> This will be behind the main div </div> <div> This is the main div </div>