Answer:
Sorted array will be:-
3 5 5 9
Explanation:
In Selection Sort algorithm it sorts the array by repeatedly finds the minimum in the array form the array that is unsorted and swaps it with the value at the first position.
The unsorted array:- 5 3 9 5
In first iteration 
minimum is 3.
3 will be swapped with 5.
Now the array is 3 5 9 5
sorted array 3
In second iteration
unsorted array is 5 9 5
sorted array 3 5
and the minimum from it is 5
No swapping will occur.
In third iteration
unsorted array is 9 5
minimum is 5
sorted array 3 5 5
swap it with 9.
Now the array is sorted.
 3 5 5 9
 
        
             
        
        
        
Answer:
Major issues with geotagging include the ability to pinpoint the exact location where a photo was taken, which raises privacy concerns.
What concerns me the most is when a geotag of an unsuspecting victim's location falls into the wrong hands. 
Explanation:
Geotag -  A geographical tag that can attach to SMS text messages, media such as photos and images, etc. The Geotag is measured in the longitude and latitude at which the image or text message took place.
 
        
             
        
        
        
The system software consists of the programs that control or maintain the operations of the computer and its devices.
        
             
        
        
        
The output is 2. The stuff() function receives a copy of n, changes it but the result is never used.