Answer:
D
Explanation:
I don't know the language, but it is clear what is going on.
It looks like you are defining a value for a in both commands.
a.multiply(b); looks like you take the value in a (which is 10) multiply it by 25 and put the result back in a. So so far we have 10 * 25 = 250
Note the next command
a.add(b)
looks like you take the current value in a(which is now 250)
and put the value of b (which has not been changed. It is still 25) and put that in a (which is 250).
The result is 250 + 25 = 275
The answer is D. Since I only understand the logic, if this answer is wrong, I wish you'd leave a note.
The answer is true, since it needs to be sent to the main server to be processed
Answer: AD RMS(Active Directory Rights Management Services)
Explanation: Active Directory Rights Management Services (AD RMS) is the tool for security that provides the protection of data .The security of data is maintained by the policies and regulation of data accessing that are implemented on data .
The working of the AD RMS is based on the RMS applications which encrypts the document and generates the regulation and stamp to collect them in an individual files.This helps in protecting the information that being created and consumed.
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