Answer:
Abstraction
Explanation:
Under fundamental principles of software engineering, the term "abstraction" is simply defined as the act of highlighting some details and hiding other ones.
Thus, the correct answer among the options is Abstraction. 
 
        
             
        
        
        
Answer:
Learn vocabulary, terms, and more with flashcards, games, and other study ... covers a large geographical area and is made up of many smaller networks. ... you share the cable infrastructure with your neighbors ... do you need if you want to connect two network segments together such as a ... the twists reduce crosstalk.Explanation:
 
        
             
        
        
        
Technical certificate like a computer-related associate degree because They both provide evidence for specialized training.
<h3>What is technical certification?</h3>
Technical certifications is known to be made up of all the coursework and testing that gives one the right to claim mastery of a specific technical skill set.
Hence, Technical certificate like a computer-related associate degree because They both provide evidence for specialized training as one do need a degree to practice it.
Learn more about Technical certificate from
brainly.com/question/24931496
#SPJ1
 
        
             
        
        
        
Answer:
E. Check the simple things first to make sure you do not miss anything 
Explanation:
This first step is called troubleshooting. As a certified operator, you need to check the simple things first to make sure you don't overlook something in your diagnosis. 
The client is fairly certain the problem is from the video card, so after checking the simple things first (troubleshooting) and see no problems, then you can check the video card of the computer.
The reason it is advisable to troubleshoot on the simple things is to make sure you don't overlook something and also that your mind isn't totally fixed on one particular thing which is the video card in this situation. 
 
        
             
        
        
        
Answer:
def SwapMinMax ( myList ):
    myList.sort()
    myList[0], myList[len(myList)-1] = myList[len(myList)-1], myList[0]
    return myList
    
Explanation:
By sorting the list, you ensure the smallest element will be in the initial position in the list and the largest element will be in the final position of the list.
Using the len method on the list, we can get the length of the list, and we need to subtract 1 to get the maximum element index of the list.  Then we simply swap index 0 and the maximum index of the list.
Finally, we return the new sorted list that has swapped the positions of the lowest and highest element values.
Cheers.