In Bubble Sort, the element 'bubbles up' to its correct position in each pass.

For Bubble Sort with n elements, we need to repeat the process for times.

The average and worst-case time complexity of bubble sort algorithm is .

In Bubble Sort, we compare adjacent pairs of elements and swap them if they are in the order.

Bubble Sort is an example of a sort algorithm.

Bubble Sort has a time complexity of .

Bubble Sort can be optimized by introducing a variable to track the largest element moved.

Bubble Sort is named so because smaller elements 'bubble' to the of the array during each pass.