answersLogoWhite

0

There is not enough information available to answer this question. The result of 72 divided by c will be an error if c is zero (0), a positive number if c is positive, and a negative number if c is negative.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

When c equals 4 what is the value of the expression 72 divided c?

72/c where c= 4 is the same as 72/4 (which =18)


What is c divided 22 in algebriac?

In algebra, when we say "c divided by 22," we are looking at the expression c/22. This expression represents the quotient of c divided by 22. In other words, we are dividing the value of c by 22 to get the result. The result of this division will depend on the specific value of c.


What is c divided by 22?

what is 12 decreased by p


How do you find the value of c such that each expression that is a perfect square trinomial?

The answer will depend on what c represents. Furthermore, there probably is no value of c such that each expression is a perfect square - you will need different values of c for different trinomials.The answer will depend on what c represents. Furthermore, there probably is no value of c such that each expression is a perfect square - you will need different values of c for different trinomials.The answer will depend on what c represents. Furthermore, there probably is no value of c such that each expression is a perfect square - you will need different values of c for different trinomials.The answer will depend on what c represents. Furthermore, there probably is no value of c such that each expression is a perfect square - you will need different values of c for different trinomials.


What is x plus c?

That depends on the value of x, and the value of c. The expression "x + c" can't be simplified, if that's what you mean.


What is 1 divided by c?

1/c also that depends on the value of c


What expression has a value of either true or false?

In C, any non-zero expression is true and any zero expression is false.


What is the value of the expression below when c 5 and d 4?

It is 138.


What expression represents the ratio of b to c?

The expression that represents the ratio of b to c is written as ( \frac{b}{c} ). This fraction indicates how many times the value of c fits into the value of b. If you want to express it as a ratio, it can also be written as ( b:c ).


What is 5a b c for a?

To find the expression ( 5abc ) for a variable ( a ), you need to substitute the value of ( a ) into the expression. For example, if ( a = 2 ), then ( 5abc = 5 \cdot 2 \cdot b \cdot c = 10bc ). If ( a ) has a different value, simply replace it in the expression accordingly.


What is the value of c divided by 30 that equals 12?

The value of c/30 that equals 12 is 12 . In order to make that value, 'c' must be 360 .


What are conditional operators in C language?

The conditional operator in C (and C++, C# and other languages) consists of two symbols, '?' and ':'. Together, they can be used to form an expression from three subexpressions:e1 ? e2 : e3The conditional operator is evaluated in two steps; first, the expression e1 is evaluated, if it has a true value, then e2 is evaluated and its value is returned as the result of the entire expression, otherwise (if e1 is false) e3 is evaluated and its value is returned as the result of the entire expression.