Answer:
predictable
Explanation:
because it repeat itself all time
Answer:
1.the program is moved from secondary storage to memory.
Explanation:
Secondary storage media generally have greater storage capacity than RAM (random access memory), for this reason the data and program are stored there.
but ram memories are much faster, for example, a solid state disk (SSD) with SATA III connection can have read and write speeds of approximately 500 MB/s, while a DDR III RAM can have speeds between 12 and 18 GB/S, that is, more than 20 times faster.
So that the flow of data at the time of running a program is optimal, the data from the secondary storage unit is copied to the RAM and this ensures that the speed at which the programs run is at least 20 times faster, and our processes run better.
Answer:
Increasing your typing speed will improve your productivity and save you time. Having a good typing speed will improve your job satisfaction.
Explanation:
hope his helps
To prevent others who use your worksheet from seeing the data you can hide column C
Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
string * createAPoemDynamically()
{
string *p = new string;
*p = "Roses are red, violets are blue";
return p;
}
int main() {
while(true) {
string *p;
p = createAPoemDynamically();
if (!p)
{
cout << "Memory allocation failed\n";
}
cout<<*p<<"\n";
// assume that the poem p is not needed at this point
//delete allocated memory
delete p;
}
}