answersLogoWhite

0


Best Answer

Unfortunately there is no expression to evaluate!

User Avatar

Wiki User

7y ago
This answer is:
User Avatar
More answers
User Avatar

Anonymous

Lvl 1
3y ago

hvgv

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Evaluate the expression for a 4 and b 3.?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Evaluate this expression for these numbers abc a equals 2 b equals 4 c equals 3?

2*3*4 = 24


How do you evaluate the variable expression 3a plus 2b?

You need values for a and b, then you multiply a by 3, b by 2 and add your answers.


Evaluate the expression b2-7b-6 when b equals -4?

b2 - 7b - 6b = -4(-4)2 - 7(-4) - 6 = 16 +28 - 6 = 38


Simplify the expression -4(-2a - 3) + 4/b - 3c + 4ab when a = 1, b = 2, and c =3?

i need help


What is the expression that is 4 less than b?

b-4 expression example b = 10 so b-4 = 6


What is expressions like 4(3 2)and 4(3) 4(2)?

This expression is an example of the Distributive Property. The expression a(b+c) = ab +ac is true because of the Distributive Property.


How do you solve this equation B-3(B-4(1-B)) equals 54?

By following BODMAS, evaluate the inner brackets first, collecting terms together as you go: B - 3(B - 4(1 - B)) = 54 → B - 3(B - 4 + 4B) = 54 → B -3(5B - 4) = 54 → B - 15B + 12 = 54 → -14B = 42 → 14B = -42 → B = -3 Check by substituting back into the original equation: B - 3(B - 4(1 - B)) → -3 - 3(-3 - 4(1 - -3)) → -3 - 3(-3 - 4(4)) → -3 - 3(-3 - 16) → -3 - 3(-19) → -3 + 57 → 54 as required.


How do you solve a AND b OR c in logical operators?

There is nothing to "solve". You can evaluate the expression when each of a, b and c are TRUE or FALSE. But that is not solving.


Evaluate -4a plus b -10a divide b when a equals 8 and b equals 5?

Evaluate -4(a+b) - 10a/b when a=8 and b=5


What is 3 plus 2 times A plus B times 4 divided by 2 minus 4 simplified expression?

3+2*A+B*4/2-4 = 3 + 2A + 2B - 4 = 2A + 2B - 1


The product of a and b divided by an expression that is 3 times their difference?

The answer to the product of a and b divided by an expression that is 3 times their difference is 3ab(a+b).


What is associatively of operator?

In simple, For operators, associativity means that when the same operator appears in a row, then to which direction the evaluation binds to. In the following, let Q be the operator a Q b Q c If Q is left associative, then it evaluates as (a Q b) Q c And if it is right associative, then it evaluates as a Q (b Q c) It's important, since it changes the meaning of an expression. Consider the division operator with integer arithmetic, which is left associative 4 / 2 / 3 <=> (4 / 2) / 3 <=> 2 / 3 = 0 If it were right associative, it would evaluate to an undefined expression, since you would divide by zero 4 / 2 / 3 <=> 4 / (2 / 3) <=> 4 / 0 = undefined