answersLogoWhite

0


Best Answer

c + d = 17.5

c - d = 12.3

c x d = 38.74

c/d = 5.73076923

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the value of the expression c d when c 14.9 and d 2.6?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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 will be the value of b when a equals 26?

that depends on what the value of c is.


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 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.


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)


The value of c which makes x2 - 24x plus c a perfect square is?

26


What is the value of the expression c d when c 3.5 and d 12.8?

If you mean: cd which means c*d then it is 3.5*12.8 = 44.8


What is x squared plus 20x plus c?

The value of such an expression depends on the values assigned to the variables, in this case, x and c.


What is the value of expression 3c2 plus 9 when c equals 4?

c = 4, c squared = 16, 3c squared = 48, 48 + 9 = 57.


What is if statement in c language?

first i would like to tell about if . if is keyword in c language . if is check the condition(expression) .if the expression is non zero value the condition is true .it will the go through the fallowing operations .other wise the condition is failed. if(expression) { } if the expression is >0 ,<0 these statements are execute inside the if statement. if the expression is =0 condition is failed.