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.
The private modifier specifies that only other members of the same class can access the member. The protected modifier restricts access to the member to within its own package.
<h3>What are public and private modifiers?</h3>
The public access modifier permits code from both inside and outside the class to access the class's methods and properties, whereas the private modifier prevents outside code from accessing the class's methods and properties.
Thus, private modifier is the member.
For more details about private modifier, click here
brainly.com/question/15108837
#SPJ1
Answer:
The answer is "Cross-Site Coding Persistent"
Explanation:
This coding is also known as an XSS, it is a threat, that converts the files into harmless pages by injecting malware.
- This type of scripting is used by the hacker, that passes malware to a different final consumer with a web app, which is typically used by the client end-script.
- It is very dangerous because the information can be transmitted to a specific repository, which may change by apps and services work.
Answer:
see explaination
Explanation:
# python code filereader.py
import sys
import readline
from sys import stdin
import random
## Open the file with read only permit
f = open('inputfile.txt')
## Read the first line
sum = 0.0
count = 0
#read file till the file is empty
while True:
line = f.readline()
if ("" == line):
print "Average age of friends is", sum/count
break
list = line.split()
print "My friend ",list[0], " is", list[1]
sum = sum + int(list[1])
count = count + 1
f.close()
'''
inputfile.txt
Denny 24
Penny 28
Lenny 20
Jenny 24
output:
My friend Denny is 24
My friend Penny is 28
My friend Lenny is 20
My friend Jenny is 24
Average age of friends is 24.0
see screenshot at attachment
Answer:
guess you didn't get your answer huh dat sucks. hope your test results came out all right
Explanation: