There are three levels to a clustered index
level 1.Root
2. Beginner level
Level 3.Leaf
The clustered index contains row-level data rows. if you are looking for a value in an indexed column, the query engine will first look at the value at the root level, if the value is available at the root level, then the query engine will not go to the intermediate level or sheet level. if the value is not based on the root level, it will look for the value at the intermediate level or leaf level. if the number of data rows is too small, then there is no intermediate level in the clustered index.
The chart below will help you understand the basic clustered index:

Jason clark
source share