Answer:
The correct answer is PGP i.e "Pretty Good Privacy" .
Explanation:
Pretty Good Privacy is an encryption algorithm that gives the database interaction with the confidentiality and authorization.Pretty Good Privacy is security algorithm which gives the security into the mail . login ,decryption ,encryption are the example of the "Pretty Good Privacy" .
Pretty Good Privacy is a type of hybrid cryptosystem that incorporates cryptographic algorithms and it has de facto open source standard for the mail and the file storage .
Answer:
const MAXNR=150;
let candidates = {};
for(let i=2; i<=MAXNR; i++) {
candidates[i] = true;
}
for(let p=2; p <= MAXNR; p++) {
if (candidates[p]) {
process.stdout.write(`${p} `);
// Now flag all multiples of p as false
i=2;
while(p*i <= MAXNR) {
candidates[p*i] = false;
i++;
}
}
}
It is history list.But still you can check it by yourself