Answer:
Document Inspector option can be used to automatically scan a document to prepare it for publishing, identifying personal information that should be removed
Explanation:
Document scanner: This converts the text written in the paper in to a digital form. Most probably it will convert the text in paper in to image only.
Document Inspector is the tool which removes the personal information while sharing the document. The personal information can be name, mail id, phone number etc. This personal information though hidden will get reflected while publishing and this document inspector allow us to protect these data from sharing.
Privacy manager: This is a software reducing the risk of unauthorized access of data
Security manager: This once again protect the document.
Answer:
The answer to this question is given below in the explanation section
Explanation:
The code is written in C++ language:
// Example program
#include <iostream>
#include <string>
using namespace std;
int main()
{
double number [3];
double addition=0;
for (int i=0;i<3;i++)
{
cout<<"Enter decimal number at position " <<i+1< " ";
cin>>number[i];
addition= addition+ number[i];
}
cout<<"The addition is "<<addition;
}
Answer:
Computer ports are classified into two types based on the protocols used. A protocol is a set of rules and standards to be followed during data transfer and communication. Usually, data is transmitted in a particular pattern.
Explanation: