This paper compares the performance of two sorting algorithms, selection sort and quick sort, analyzing their execution time on integer and string arrays. Results indicate that selection sort outperforms quick sort in terms of speed, particularly for string arrays, although both algorithms exhibit a time complexity of O(n^2). The study concludes that while selection sort is simpler and more efficient for smaller data sets, both algorithms struggle with larger arrays.