The biggest thing she need to consider are her variables. and the output she will get.
Answer:
Advanced persistent threat.
Explanation:
Advanced persistent threat is a threat actor implemented by either a government supported or private group to intrude a network or system and stays undetected, collecting information over a period of time.
It is used by cyber terrorist group to facilitate massive attacks based on the information retrieved. National or government group use the concept to promote national security.
Answer:
Explanation:
a) taking 00000005, it is a 13th bit which is 0, and therefore, we'd call it an ordered chunk
b) taking 00000005 again, it is 14th (B) and 15th (E) bits are 0 and so we'd call it a middle fragment
c) 00000015 is equal to 21, it is not a multiple of 4, and as such, it needs 3 padding bytes
d) 00000005 is equal to 5 making it a TSN. So the TSN is 5
e) taking 0003, we can then say the SI is 3
f) taking 000A, the SSN is then 10
g) the message is 48656C6C
Answer:
numbers = '14 36 31 -2 11 -6'
nums = numbers.split(' ')
for i in range(0, len(nums)):
nums[i] = int(nums[i])
print(nums)