The answer is "underline gallery or underline drop-down". The user can access the decorative underlines and change the underline's color through the underline gallery. Underlines can be added for decoration purposes, to make your work look formal or creative.
Line 4
It should be font-size: 15px
Also there should be curly braces in line 5.
Answer:
<h2> CPU is the answer......</h2>
Answer:
The solution is implemented using C++
int getRowTotal(int a[][5], int row) {
int sum = 0;
for(int i =0;i<5;i++)
{
sum += a[row][i];
}
return sum;
}
Explanation:
This defines the getRow function and the parameters are arr (the 2 d array) and row and integer variable
int getRowTotal(int arr[][5], int row) {
This defines and initializes sum to 0
int sum = 0;
This iterates through the row and adds the row items
<em> for(int i =0;i<5;i++) {
</em>
<em> sum += arr[row][i];
</em>
<em> }
</em>
This returns the calculated sum
return sum;
}