Even if an object in a vector large, it doesn't need a lot of memory. Hence, the file size of a vector graphic is often very small.
Answer:
9LA+ªÿ
Explanation:
This is for Python
numbers = [7, 3, 6, 9, 0]
print(numbers.sort())
Output: [0, 3, 6, 7, 9]
print(numbers.sort(reverse = True))
Output: [9, 7, 6, 3, 0]
Outline
Hope it helps :)