Answer:
See explaination
Explanation:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
const int SIZE = 50;
string phoneDirectory[SIZE];
int size=0;
string name; //name to look for
ifstream inFile;
inFile.open("phonebook");
while (!inFile.fail()) {
getline(inFile,phoneDirectory[size]);
size++;
}
inFile.close();
// Get a name or partial name to search for.
cout << "Enter a name or partial name to search for: ";
getline(cin, name);
cout << "\nHere are the results of the search: " << endl;
int numberEntriesFound = 0;
for (int k = 0; k < size; k++)
{
if (phoneDirectory[k].find(name.data(), 0) < phoneDirectory[k].length())
{
numberEntriesFound ++;
cout << phoneDirectory[k] << endl;
}
}
if (numberEntriesFound == 0)
cout << "\nNo Entries were found for " << name;
return 0;
}
Outside mirror or hearing aid
Answer:
a. Use a password manager to create unique strong passwords.
c. Use bio metric security that uses characteristics of your face, hands, or eyes.
d. Use two factor authentication where the user enters the password and a code sent his or her cell phone.
Explanation:
A disk array sometime known as RAID
Correct question.
Which role is delegated to personnel of the IT department and how is responsible for maintaining the integrity and security of the data?
Answer:
<u>data custodian</u>
<u>Explanation:</u>
Remember, every organization generates data, and large organizations generate even larger data.
Hence, the role of a data custodian in an organization requires He implements measures to protect the organization's data, store and backup the data, as well as granting access to the data to authorized persons when needed.