Answer:
Posttest
Explanation:
A loop in programming is the continuous execution of a specific task to a determined number of times with a given condition. It is a written line or lines of code that is logical coded to repeat execution for multiple but fixed number of time. There are majorly two types of loops in programming, they are,
1. Posttest loop statement.
2. Pretest loop statement.
The posttest loop statement is written to execute lines of code at least once, following a condition, for which it evaluates the condition after the code is executed.
The pretest loop statement also execute the code with a condition, but evaluates the condition before the code is executed.
Answer:
Explanation:
The following code is written in Javascript as requested and creates a function that takes in the total credit card debt amount and the minimum monthly payment. Then it calculates the new balance at the end of the year after paying 12 monthly minimum payments. Finally, printing out the new balance to the console which can be seen in the attached picture below.
let brainly = (debt, minimum) => {
debt = debt - (minimum * 12);
console.log("Credit Card Balance after one year: $" + debt);
}
brainly(50000, 3400);
Answer: disconnect power to the server.
Explanation:
So as to avoid further damage and also to preserve evidence of the server compromise, the server needs to be disconnected completely from the power source.
Answer:
hope you like this ans
Explanation:
using heat in cleaning containers prevents the spread of poisoning and halts the microorganism to multiply and infest the food that will be placed in containers.