TraceDialog[expr] initiates a dialog for every expression used in the evaluation of expr. TraceDialog[expr, form] initiates a dialog only for expressions which match form. ...
HoldAll
(Built-in Mathematica Symbol) HoldAll is an attribute which specifies that all arguments to a function are to be maintained in an unevaluated form.
TracePrint[expr] prints all expressions used in the evaluation of expr. TracePrint[expr, form] includes only those expressions which match form. TracePrint[expr, s] includes ...
TimeConstrained[expr, t] evaluates expr, stopping after t seconds. TimeConstrained[expr, t, failexpr] returns failexpr if the time constraint is not met.
NHoldFirst is an attribute which specifies that the first argument to a function should not be affected by N.
There will be times when you want to stop Mathematica in the middle of a computation. You may have asked Mathematica to do something that you did not intend or that is taking ...
NHoldAll is an attribute which specifies that none of the arguments to a function should be affected by N.
SynchronousUpdating is an option for Manipulate, Dynamic, and related functions that specifies whether or not to evaluate their contents synchronously.
NHoldRest is an attribute which specifies that all but the first argument to a function should not be affected by N.
Defer
(Built-in Mathematica Symbol) Defer[expr] yields an object that displays as the unevaluated form of expr, but that is evaluated if it is explicitly given as Mathematica input.