Answer:
The window operating system is popularly known as a graphical user interface(GUI)
Explanation:
older operating systems were command line based but window uses a gui
Answer:
#include <string>
#include <iostream>
using namespace std;
int main() {
string userInput;
getline(cin, userInput);
// Here, an integer variable is declared to find that the user entered string consist of word darn or not
int isPresent = userInput.find("darn");
if (isPresent > 0){
cout << "Censored" << endl;
// Solution starts here
else
{
cout << userInput << endl;
}
// End of solution
return 0;
}
// End of Program
The proposed solution added an else statement to the code
This will enable the program to print the userInput if userInput doesn't contain the word darn
Well Here I got 4
1. Email Functions
2. Distributing Payments
3. Record Keeping
4. Direct Mail Promotions
<em>Have A great night!</em>
<em></em>
Answer:
The answer to this question is given below in the explanation section
Explanation:
The correct answer is RAM.
RAM is used for storing programs and data currently being processed by the CPU. So, the data in the RAM, can be easily accessible and processed by the CPU more fastly.
While Mass memory and neo volatile memory is not correct options. because these types of memory can stores a large amount of data but CPU fetch data from these memories into RAM. and, RAM can only be used by the CPU when performing operations.