CPU's are marching forward at some frequency, and the period of this frequency is called a Clock Tick or Clock Cycle
A 100Mhz processor will receive 100,000,000 clock ticks every second.
The tick is managed/created by the clock generator
Processor clocks may stop ticking under circumstances like the following:
The count of cycles, also known as clockticks, forms the basis for measuring how long a program takes to execute. See CPU - (CPU|Processor) Time Counter
Clockticks are also used as part of efficiency ratios like cycles per instruction (CPI).
Each core on a modern CPU has a TSC (Timestamp counter) that counts the number of ticks that have transpired.
Example: 2,59 times per nanosecond.
Property: Invariant: guarantee that the frequency will not change.
Clock Tick in process explorer:
You can read the TSC (Timestamp counter) with the rdtsc assembly instruction.