Correct

Which of the following is also a B-Tree of order 3?

              (29 # _ )
            /           \
           /             \
          /               \
      (21 # _)            (37 # 50 )
     /    \             /     |     \
    /      \           /      |      \
(7,9,11)   (21,23)  (29,30) (37,49)  (50,100)
Yes, this tree is just fine. Search property in effect, all nodes of the right size, all leaves on the same level.

BACK