Answer:
Network administrator and programmer.
Am still in A-level, am doing Physics, chemistry, Maths and ICT.
I have an A in physics, B in Chemistry and Maths and A† in ICT
 
        
             
        
        
        
You have to ask a question to get an answer
        
                    
             
        
        
        
Answer:
Virtual reality has been one of the most significant innovation in video games.
Explanation:
Virtual reality is a simulated experience that can be similar to or completely different from the real world. It has totally revolutionized the way we play and experience the world created inside of a game.  On a computer, virtual reality is primarily experienced through two of the five senses: sight and sound.
The whole gaming experience can elevate users confidence & sense of pride. There are VR games that will help you to get a good idea of what it feels to face a big white shark as it develops realistic scenarios. That's why virtual reality has been one of the most significant innovation in video games.
 
        
             
        
        
        
Answer: Physical location 
Explanation:
 If we place records from, different tables in adjacent physical location, it would increases efficiency of a databases as, database consolidates records from previously store in separate files into a common file. Databases are fast and efficient when they are dealing with large data. When all the information is stored in multiple physical location it is also known as distributed database, as physical location helps to provide the physical and logical path and also protect from default locations in the database.
 
        
             
        
        
        
Answer:
Returned value: 2
Explanation:
Public int f(int k, int n) {
    if (n == k)
        return k;
    else if (n > k)
        return f(k, n - k);
    else return f(k - n, n);
}
/////////////////////////////////////////////////////////////////////////////////////////
Trace of function calls,
f(6, 8)
f(k, n - k) -> (6, 2)
f(k - n, n) -> (4, 2)
f(k - n, n) -> (2, 2)
return k