Processes on an Unix System

 
ps f Shows the tree of processes
ps aux | wc -l Shows the total number of processes
ps aux  Shows all processes and how much CPU and RAM they need
ps axl Shows all processes and what queue their on
uptime Shows the average ready + runqueue length for 1 min, 5 min, and 15 min
top Shows the processes currently running (sorted by CPU usage)
top  (press 'm' while running) Shows processes sorted by Memory

1) How many processes are on your machine

2) How many are ready to run (on average)

3)  What is the most common queue to be on?