$DistributedContexts is the default value of the DistributedContexts option of functions such as ParallelTable and ParallelMap.
$LibraryPath gives the default list of directories to search in attempting to find a library.
$MachinePrecision gives the number of decimal digits of precision used for machine-precision numbers.
$MessageGroups is the list of rules that gives named message groups used in functions like On and Quiet.
$MinMachineNumber is the smallest positive machine-precision number that can be used on a particular computer system.
$MinPrecision gives the minimum number of digits of precision to be allowed in arbitrary-precision numbers.
$ProcessorCount gives the number of processor cores available on the computer system on which Mathematica is being run.
$ScheduledTask returns the current ScheduledTaskObject.
Functions for manipulating elements in explicit lists. This gives a list with x prepended. This inserts x so that it becomes element number 2.
In an expression like f[{a,b,c}] you are giving a list as the argument to a function. Often you need instead to apply a function directly to the elements of a list, rather ...