Answer:
opening
Explanation:
Your answer would be opening
Answer:
The correct answer to the following question will be "Cloud computing".
Explanation:
A series of technologies too abstract the specifics of how users are supplied with the software, data, network, and other computing services, called Cloud computing. On-demand, the accessibility of computer resources, database space, and computational complexity, with little or no particular active user administrators.
This term is commonly used to define network infrastructure which is available to several users over the internet.
There are different types of cloud computing. These are as follows:
- Infrastructure-as-a-Service (IaaS).
- Software-as-a-Service (SaaS).
- Platform-as-a-Service (PaaS).
Therefore, Cloud computing is the right answer.
MAKE ONE AND SEND THE CODE !! I'M SO BORED RN IT ISN'T NORMAL HAHAHAHA
Answer:
Explanation:
The following code is written in Java and runs a thread every 45 seconds that adds the two counters together and saves them in an integer variable called register. Then prints the variable. If this code runs 5 times it automatically breaks the loop. This can be changed or removed by removing the breakLoopCounter variable.
public static void add_Counters(int counterOne, int counterTwo) {
int register = 0;
int breakLoopCounter = 0;
try {
while (true) {
register += counterOne + counterTwo;
System.out.println(register);
Thread.sleep(45000);
breakLoopCounter += 1;
if (breakLoopCounter == 5) {
break;
}
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}