Vectors and arrays are 0-based, so they don't start at 1 but at 0
your sort works by switching positions of 2 elements, which in your case didn't happen for the pair of the first&second element
your outer-loop starts with k=1, which should be k=0 instead
SQL queries can be used to retrieve data from a table.
The query that returns the entire Gamers table is (b) SELECT * FROM Gamers;
To retrieve a data we make use of the SELECT FROM clause
From the question, we understand that all entries of the Gamers table should be returned.
The keyword ALL in SQL is represented with asterisk i.e. *
The table whose data would be retrieved is the Gamers table.
Hence, the required query is: SELECT * FROM Gamers;
Read more about SQL queries at:
brainly.com/question/24223730