No, basically answer is O(1)
read above comments.
It will be O(n) if n is not known.. but here only 100 elements are present which is constant.. so time taken is constant O(1) ..
And whether its selection sort or any other sorting technique, since you take only 100 integers, its O(1).
@zaki