Answer:
creator of EFS file and domain of administration.
Explanation:EFS stands for encrypting file system, as the name suggests this system is used to encrypt files. It is easy to handle and it is not function-able on window 7 home, windows 7 premium. Though it is easy to installed, deployment in large environment needed careful planning
Though all the users have access to EFS features, only members with authority has the right to decrypt.
I think it's low grade lime stone..
Emails are formal
Online chats are private and friendly
Emails are used for business
Online chats are for friends
Answer:
The answer to this question is given below in the explanation section.
Explanation:
In this given program there are two errors, first in line number 2 that stores a string value, not int. The second error is at line 6, a symbol "*" represents multiplication, not addition.
To solve these errors, in line #2, convert the input to an int variable value 1. To add the values of variables (value1 and value2), use the plus symbol "+" in the print statement at line #6.
The correct program is given below:
<em>value1= int(input("Enter first number: "))</em>
#get second number and store it into value2 variable.
<em>value2= int(input("Enter second number: "))</em>
#add the values store in variables (value1 and value2) and then print
<em>print (value1 + value2)</em>