Questions tagged [evaluate]

execution of evaluations of expressions or evaluation functions. Use tag evaluation for rules, algorithms, and strategies of the evaluation.

What is it?

Evaluation is about rules, algorithms and strategies used for the evaluation of expressions or the computation of evaluation functions.

This tag may should be used for the execution of evaluations.

Related tags

  • Prefer the tag if the question is about rules, algorithms and strategies used for the evaluation of expressions or the computation of evaluation functions.
  • For more specific questions use tag

See also:

470 questions
-4
votes
4 answers

Python Checking usernames with regular expressions

I have a task i need some help with. The task is to create a python script that asks the user to enter a desired username. The username has to be as following: "a11aaaaa". So starting with a letter, 2x numbers, 5x letters. This is the rule for how…
Robin K
  • 35
  • 5
-4
votes
1 answer

Javascript eval() function not working properly

I'm currently making a calculator with HTML, CSS and Javascript, for practice. I found out that the "built in" eval function did the math from a string. But it doesn't work properly. I don't know what the problem is. But when i for example do:…
-4
votes
2 answers

Evaluate math expression but given variables instead of numbers

There are lot of math expression evaluators out there, but they evaluate something like (1 + 2)/3, and so on. But I need to evaluate expression which contains variables (in java). For example, if the program has two variables int a = 1; int b = 2;…
user3366706
  • 1,529
  • 3
  • 31
  • 54
-9
votes
1 answer

How to evaluate a C expression with literal suffixes U L F?

I need help understanding how the expression below should be interepted, because I have no clue. help please. Expression: 11U/22L*(3.75F-2)+3./6+.25/1.F; Choices: A) 0.5 B) 0.25 C) 0.0 D) 0.75
1 2 3
31
32