Answer:
A <u>rootkit</u> is a set of software tools used by an attacker to hide the actions or presence of other types of malicious software, such as trojans, viruses, or worms.
Explanation:
A <u>rootkit</u> is a set of software tools used by an attacker to hide the actions or presence of other types of malicious software, such as trojans, viruses, or worms. Where a Rootkit provides features like remote access to users, it also opens ways for attackers. It helps in hiding the malicious software. Rootkits can be installed on the victim systems by phishing attack or social engineering techniques ..
Answer:
730
Explanation:
Calculation for What is the corresponding logical address
Using this formula
Corresponding logical address=Physical address generated-Relocation register
Let plug in the formula
Corresponding logical address=6730-6000
Corresponding logical address=730
Therefore the corresponding logical address will be 730
Answer: Password protected
Explanation: Package is the namespace which carries the set of all the related classes and related interfaces. Package class has the right to access the package members. If a package is built and is kept for the future use then it should be made secured so there can be no unauthorized access of the class that package contains,therefore it should be password protected. This will help the class and the members to be in security an can be accessed by authority in future.
Commands are organized into tabs on the A. Ribbon
Answer:
int sumeven(int lis[],int n)
{
int sum_e=0;//integer variable to store the sum.
for(int i=0;i<n;i++)
{
if(lis[i]%2 == 0)//if the number is even adding to sum_e.
sum_e=sum_e+i;
}
return sum_e;//retuning the sum.
}
Explanation:
The above written function is in C++.This function find the sum of even numbers in the list provided.It loops over the array and if the number is even adds to the variable sum_e finally return sum_e which having the sum of even numbers now.