Multiple choice technology programming languages

Which of the following are Balanced Binary Search Trees?

  1. AVL trees.

  2. JBL trees

  3. Red-black Trees

  4. Blue-Green Trees

Reveal answer Fill a bubble to check yourself
A,C Correct answer
Explanation

AVL trees and Red-Black trees are self-balancing binary search trees that maintain balance through rotations during insertions and deletions. JBL trees and Blue-Green trees are not standard balanced BST data structures in computer science literature.