Pick when you want a job to run, get the cron expression, and see the next runs
From left to right they are minute, hour, day of month, month and day of week. For example "0 9 * * 1" means minute 0, hour 9, any day of month, any month, day of week 1 (Monday), so it runs every Monday at 09:00.
Standard cron treats them as or, not and. "0 9 1 * 1" runs on the 1st of every month and also on every Monday. Restricting a job to days where both match cannot be expressed in a cron expression.
It is a step. Writing "*/10" in the minute field runs the job at minute 0, 10, 20 and so on. Combined with a range, "1-20/5" means every 5 minutes between minute 1 and 20, that is minutes 1, 6, 11 and 16.
Yes. Most cron implementations accept both 0 and 7 for Sunday. This tool treats 7 as the same value as 0 when it computes the next run times.
They are computed in the time zone configured on your device. A cron job on a server runs in the server time zone, so the real execution time will differ if the two settings do not match.
No. Building the expression and computing the next run times both happen entirely in your browser. Nothing you type is sent to or stored on a server.