Answer:
FamilyVacation FamilyVacation::operator+(int moreDays) {
FamilyVacation copy = *this;
copy.numDays += moreDays;
return copy;
}
Explanation:
You create a copy (which is simple because the class contains no pointers), then you modify the copy and return it.
Answer:
u can search that on google
Explanation:
B, b, b, and then c. I'm not sure, though, so you might want to check again.
Answer:
The answer to this question is "Principle of need to know".
Explanation:
In the given statement some information is missing that is the option of the question that can be described as follows:
A. Principle of least privilege
B. Principle of need to know
C. Principle of limited rights
D. Principle of permissions
The need to know principle refers to seeks to prevent "browsing" sensitive data by restricting access to as few people as possible. It is also known as a process, in which the user can set the restriction to access data to other users, and other choices are not correct that can be described as follows:
- In option A, It is used to access a critical system.
- In option B, It is used to provides rights to access data.
- In option D, It is also known as an administrator, that allows users to access data.