EvaluationObject[n, expr, ...] represents an expression submitted for evaluation on any available parallel kernel.
NHoldFirst is an attribute which specifies that the first argument to a function should not be affected by N.
SynchronousUpdating is an option for Manipulate, Dynamic, and related functions that specifies whether or not to evaluate their contents synchronously.
NHoldAll is an attribute which specifies that none of the arguments to a function should be affected by N.
MomentEvaluate[mexpr, dist] evaluates formal moments in the moment expression mexpr on the distribution dist.MomentEvaluate[mexpr, list] evaluates formal moments and formal ...
Compile
(Built-in Mathematica Symbol) Compile[{x_1, x_2, ...}, expr] creates a compiled function that evaluates expr assuming numerical values of the x_i. Compile[{{x_1, t_1}, ...}, expr] assumes that x_i is of a ...
NHoldRest is an attribute which specifies that all but the first argument to a function should not be affected by N.
FrontEndExecute[expr] sends expr to be executed by the Mathematica front end.
If you have a function defined in an external program, then what you need to do in order to make it possible to call the function from within Mathematica is to add ...
Quiet
(Built-in Mathematica Symbol) Quiet[expr] evaluates expr "quietly", without actually outputting any messages generated.Quiet[expr, {s_1::t_1, s_2::t_2, ...}] quietens only the specified messages during ...