Answer:
access privileges or privileges
Explanation:
The employees at Manuel's company have different _access privileges _ , based on the situation described.
The permissions to be able to perform some actions on some files are called privileges. So, some employees have limited privileges (only able to open files, but not to edit them), and other have extended privileges (allowing them to open and edit files).
Although possible, it's <u>unlikely that the employees have different different antivirus software, broadband connections or firewalls</u>. And no indication in the situation described lead to think that.
It's unclear in your question if <u>"access privileges</u>" is <u>one or two answer choices</u>. Usually, we talk about "access privileges" but it would also be just "privileges". If these are two choices, go for "privileges", since all employees have access to the files,<u> so they don't have different access</u>.
D is the answer to that problem
Answer:
C++
Explanation:
using namespace std;
class AbstractClass {
public:
virtual bool checkUpperCase(string inputString);
virtual string lowerToUppercase(string inputString);
virtual void stringToInt(string inputString);
};
class ConcreteClass: public AbstractClass {
public:
bool checkUpperCase(string inputString) {
bool isUpper = false;
for (int i=0; i < strlen(inputString); i++) {
if (isupper(inputString[i])) {
isUpper = true;
break;
}
return isUpper;
}
string lowerToUppercase(string inputString) {
for (int i=0; i < strlen(inputString); i++) {
putchar(toupper(inputString[i]));
}
return inputString;
}
void stringToInt(string inputString) {
int convertedInteger = stoi(inputString);
convertedInteger+=10;
cout<<convertedInteger<<endl;
}
};
int main() {
ConcreteClass cc;
return 0;
}
The answer is A! Hope this is helpful!