Respuesta :
Answer:
Option b is false
Explanation:
Radix sort is not a comparative sorting algorithm. It creates and distributes element into buckets and according to their radix thereby avoiding comparisons. If elements have significant digits that are more than one, the bucketing would be redone for each digit. While it is doing this, ordering of former step is preserved till every digit has been attended to. It can also be called the bucket or digital sort.
LSD radix starts from the least to the digit which is most significant.
Statement that is false is B. LSD radix sort is a comparison sorting algorithm.
What is LSD variant of radix sort?
The LSD variant of radix sort can be regarded as one that provide stable counting sort on the list for each digit.
This usually start from the least significant (right-most) digit, it is distribution sort and uses bucket sort.
Learn more about LSD variant at;
https://brainly.com/question/8354517