Adware. Adware displays ads and popups. The other options are completely different from each other
        
             
        
        
        
Answer:
Blocking Mode     
Explanation:
Spanning Tree Protocol is used to allow path redundancy in the network without creating cycles/circles also called loops.
When two parts of the switched network are connected via two or more Layer 2 switches this result in a loop.
This affects the performance of the network as the result of broadcast packets flooding.
STP puts one port of the switch to forwarding mode and the rest of the ports within the same part of the network to the blocking mode to avoid broadcast packet flooding. STP puts all the ports that are allowing redundant paths to blocking mode and the one port that is left after this is placed in forward mode.
Spanning Tree Algorithm is used by STP to determine the optimal path  of switch to the network.
Bridge Protocol Data Units are used to share the information about the optimal path determined by the spanning tree algorithm with other switches. 
This information helps STP to eliminate the redundant paths.
So this is how STP allows only one active path to the destination while blocking all other paths to avoid switching loop.
 
        
             
        
        
        
Answer:
The program to this question can be given as:
Program:
#include <stdio.h> //include header file.
int main() //defining main method
{
char i,j; //defining variable
for  (i='a'; i<='e'; i++) //outer loop for column
{
for (j='a'; j<='e'; j++) //inner loop for row
{
printf("%c%c\n",i,j); //print value
}
}
return 0;
}
Output:
image.
Explanation:
- In the above C language program, firstly a header file is included. Then the main method is defined in this, a method contains a char variable that is "i and j". This variable is used in for loop, that is used to print the pattern.
 - To print the following patter two for loop is used the outer loop is used for print columns and the inner loop prints row.
 - In C language to print character, we use "%c" inside a loop print function is used, that prints characters. 
 
 
        
             
        
        
        
If you are using CSS
:
table {
    border-collapse: collapse;
    border: 5px solid black;
    width: 100%;
}
td {
    width: 50%;
    height: 2em;
    border: 1px solid #ccc;
}
HTML
<table>
    <tbody>
        <tr><td></td><td></td></tr>
        <tr><td></td><td></td></tr>
        <tr><td></td><td></td></tr>
    </tbody>
</table>
for HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sample table</title>
<style>
table {
    border-collapse: collapse;
    border: 5px solid black;
    width: 100%;
}
td {
    width: 50%;
    height: 2em;
    border: 1px solid #ccc;
}
</style>
</head>
<body>
<table>
    <tbody>
        <tr><td></td><td></td></tr>
        <tr><td></td><td></td></tr>
        <tr><td></td><td></td></tr>
    </tbody>
</table>
</body>
</html>