answersLogoWhite

0


Best Answer

It means to do the required calculations, in order to get a single number as a result. (Or some other data type, which is not numeric - in computer science, date expressions and text expressions are also used, among other things.)

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is evaluation of an expression?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the Evaluation?

to draw a conclusion from exaiming; to compute an expression


Evaluate the numeric expression 34?

34 is the evaluation of 34


C code for evaluation of prefix expression?

a*b*c


What does Evaluation?

find a numerical expression or equivalent for (an equation, formula, or function).


What is an algebra expression you replace each variable with a number?

evaluation, evaluate.


What order of evaluation?

The order of evaluation refers to the sequence in which operators are executed in an expression. In most programming languages, parentheses are evaluated first, followed by exponentiation, multiplication and division, and finally addition and subtraction. It's important to understand the order of evaluation to predict how an expression will be computed.


Evaluate the expression -3?

As it stands (because the rest of the expression may be missing) the evaluation to the constant value of -3 will be the result.


Real time applications of stack?

Stacks are commonly used in real-time applications such as backtracking algorithms, function call management in programming, and managing undo operations for applications like text editors or design software. They are also used in web browsers to manage history navigation and in expression evaluation in programming languages.


What is the math term used to find the value of an algebraic expression?

A term often used is "evaluate".


Evaluate a post fix expression?

Okay, here is a postfix expression: 3 4 * 5 6 * + the evaluation: 3*4 + 5*6 12 + 30 42


What is the difference between simplifying an expression and evaluating an expression?

When you simplify, you are just taking the equation down to it's simplest form, not solving it. Evaluation involves actually solving the problem.


Evaluate the polynomial expression using linked list using c?

Evaluating a Polynomial expression using a singly linked list visit : http://myfundatimemachine.blogspot.in/2012/06/polynomial-evaluation-in-c.html