It can stop the function when it’s no longer needed to keep running
And it can give a certain value to send back so it can be used elsewhere in your code
Answer:
The list of hardware components required in multimedia are as follows:
- Microprocessor.
- High storage hard disk.
- RAM.
- High resolution graphics cards.
The list of software components required in multimedia are as follows:
Answer:
it goes to the deleted items area
Explanation:
but it also depends on where you deleted it on
ANSWER:
The correct answer is Running Sum.
Explanation:
A report has a column of totals, with each total adding to the cell above it. Such type of calculated figure is called the Running Sum.
Running sum is also called the Partial Sum. In such type of summation, the values in the sequence is added to get a final result and then if a new number comes, it is again added to the grand sum, and in this way the sequence continues. Every new entry is added to the previous sum to get another sum.
Answer:
<!DOCTYPE html>
<html>
<head>
<style>
#header {
text-align: center;
float: left;
}
#langtable {
border: 2px solid blue;
border-spacing: 5px;
}
#langtable th {
border: 2px solid green;
}
#langtable td {
border: 2px solid green;
padding: 10px;
}
</style>
</head>
<body>
<div id="header">State and languages
<table id="langtable">
<tr>
<th>State</th>
<th>Major Spoken Language</th>
</tr>
<tr>
<td>Punjab</td>
<td>Punjabi</td>
</tr>
<tr>
<td>Jammu and Kashmir</td>
<td>Kashmiri</td>
</tr>
<tr>
<td>West Bengal</td>
<td>Bengali</td>
</tr>
</table>
</div>
</body>
</html>
Explanation:
I think this looks pretty much like it.