Answer: Registers
Explanation:
Registers are small storage locations identified by different types of registers. The function of the register is to provide data for immediate processing to the CPU. These registers hold data temporarily and provide easy access of data to the processor.
Answer:
objective of sustainable development are:
Explanation:
1.to help in poverty alleviation
2.to conserve the environment effectively
3.to gain human development and progress
4.to use resources and means carefully
To prevent others who use your worksheet from seeing the data you can hide column C
The program that takes two char parameters passed by reference and swap the values in the two parameters is illustrated below.
<h3>What is a program?</h3>
A computer program is a sequence of instructions in a programming language for a computer to execute.
The program is illustrated below:
void SwapGrade(char &g1, char &g2)
{
char t = g1;
g1= g2;
g2 = t;
}
Output
B
C
C B
Learn more about program on:
brainly.com/question/26642771
#SPJ1
Print statements are used to display outputs
The number of times the nested loop will be executed is 43200
<h3>What are nested for loops?</h3>
Nested for loops are loops that are placed within another loop or loops
From the statement, we have the following loop conditions:
h = 1; h <= 12, m = 0; m <= 59 and s = 0; s <= 59
The above means that:
- h = 12 --- the outer loop will be executed 12 times
- m = 60 --- the middle loop will be executed 60 times
- s = 60 --- the inner loop will be executed 60 times
So, the number of times the nested loop will be executed is:


Hence, the number of times the nested loop will be executed is 43200
Read more about loops at:
brainly.com/question/14284157