Answer:
<em>A voltage regulator.</em>
<em></em>
Explanation:
<em>A voltage regulator, controls the output of an alternating current or a direct current (depending on the design), allowing the exact amount of voltage or wattage to be supplied to the computer hardware</em>. This device sometimes uses a simple feed-forward design or may include negative feedback. The two major types of voltage regulator are based on either the electromechanical or electronic components.
<em>The electronic types were based on the arrangement of resistor in series with a diode or series of diodes, and the electromechanical types are based on coiling the sensing wire to make an electromagnet. </em>
Answer:
Answer is A. SRAM
Explanation:
Memory cache is called static RAM.
Answer:
The BASIC program is as follows:
SUM = 0
FOR I = 1 TO 20
INPUT SCORES
SUM = SUM + SCORES
NEXT I
AVERAGE = SUM/20
PRINT AVERAGE
Explanation:
This initializes sum to 0
SUM = 0
This iterates through 20
FOR I = 1 TO 20
This reads each score
INPUT SCORES
This calculates the total scores
SUM = SUM + SCORES
NEXT I
This calculates the average
AVERAGE = SUM/20
This prints the calculated average
PRINT AVERAGE
To use image as a link in HTML, use the <img> tag as well as the <a> tag with the href attribute. The <img> tag is for using an image in a web page and the <a> tag is for adding a link. Under the image tag src attribute, add the URL of the image. With that, also add the height and width.
-tutorialspoint