Answer:
Topology means arrangement of nodes 
Explanation:
In computer science the word topology means the arrangement of nodes and elements in a network. For any topology we do need nodes and cables for maintaining the infrastructure. 
In mesh topology the all nodes use to get connected by direct link. While each and every node is directly associated with  one another. In this infrastructure we do need lot cabling where every node will be connected with one another. While usage of good quality cable in network is  also expensive to manage. Although there are lot of benefits of this topology, where the transmission of data would never stop if node is not working the rest will be working to transfer the data among other nodes ,this is more secure because there is no traffic for data to travel via many nodes   to reach the destination. Every node is directly connected and communicate. So, once the node is not working the communication will not be stop but the maintenance and troubleshooting will be difficult in this infrastructure. 
It is proved along with lot of benefits and network security ,this infrastructure is having some disadvantages as well. Cabling expense , maintenance cost etc  . usually small scale networks do not prefer mesh topology.  Small scale and low budget companies can  not afford this topology because it is expensive.
Although we do believe that the data security is most important for today's era ,so few companies those wanted to keep their information secure and confidential they must use mesh topology by ignoring the cost incurred for this set up. Data security and integrity would never be compromised by some of the companies. 
Mesh topology is more safer, more quick infrastructure which is although very expensive , difficult to mange and maintain. Moreover it is overhead of cabling as well to connect every node but the demand of mesh topology would never be less. It is demanding and appealing topology still.
 
        
                    
             
        
        
        
Answer:
import random
randomlist = []
for i in range(0,20):
 n = random.randint(-29,30)
 if n < 0 :
 n = 100
 randomlist.append(n)
print(randomlist)
Explanation:
The random module is first imported as it takes care of random. Number generation. 
An empty list called randomliay is created to hold the generated random integers. 
Using a for loop, we specify the range of random numbers we want. 
Inside the for loop ; we attach our generated random integer which will be in the range (-29 to 30) in a variable n
For each n value generated, if the value is less than 0( it is negative, since all the values are integers), replace the value with 100.
 
        
             
        
        
        
Answer:
All of the above
Explanation:
An interrupt priority scheme is a system which decides the priority at which various work is done and it perform all of the above mention task so therefore all of the above is the right answer.
 
        
             
        
        
        
1) Bricklayer 2) Roofer 3) Architectural drafter 4) landscape architect
        
                    
             
        
        
        
Answer:
The program to this question as follows:
Program:
def lettersOnly(s): #defining method lettersOnly
    val="" #defining string variable that return value
    for i in s: #defining loop to calculate value
        if(i.isalpha()): #check condition that value is string
            val=val+ i #add value
    return val #return value
print(lettersOnly("data3base_ro1c3k5s")) #call method and print value
Output:
databaserocks
Explanation:
In the above python code, a method lettersOnly is declared that accepts a string variable  "s" in its parameter. Inside the method, a string variable "val", and loop is declared, in which the "val" variable holds method return value.
- In the loop and if block is used that uses "isalpha" string method, which checks the check alphabetic character in the given value. if this is true it will calculate all value in "val" variable and return its value.    
- At the last, the print method is used, which calls the lettersOnly method and prints its return value.