Computer Science, asked by radhalamani333, 6 months ago

{

for i = 1 to n do

{

j = i;

for k = i + 1 to n do

if (a[k] < a [j]) then j = k;

t = a[i];

a[i] = a[j];

a[j] = t;

}

}

The above code implements which sorting?​

Answers

Answered by beebiayesha147
1

Answer:

keep question properly

Similar questions