Answer:
Acceptability, Dependability and Security, Efficiency, and Maintainability.
Explanation:
Acceptability, Dependability and Security, Efficiency, and Maintainability.
Answer:
The functions of operating system are:
Explanation:
It protects the user to create,copy,delete,move& rename files & folders.
It protects the stored information from unauthorized users & denies them access to data.
It manages the storage and retrieval of data from disks.
It manages the input to and output form of computer system.
Answer:
Class SavingsAccount : public BankAccount
{
double interestRate;
int interestType;
public SavingsAccount(double interestRate, string interestType)
{
this.interestRate=interestRate;
if(interestType=="Simple")
this.interestType=1;
else if(interestType=="Compound")
this.interestType=2;
}
public double getInterestRate()
{
return this.interestRate;
}
public int getInterestType()
{
return this.interestType;
}
}
Explanation:
The correct answer is “C. Cookies”
Answer:
CPU register) is one of a small set of data holding places that are part of the computer processor. A register may hold an instruction, a storage address, or any kind of data (such as a bit sequence or individual characters). Some instructions specify registers as part of the instruction.