Luke himself wrote t the book
we translate the following statement given in terms of logarithms. 211 base x can be expressed into log 211 / log x while 152 base 8 can be expressed int o log 152 over log 8. In this case,
log 211 / log x = log 152 / log 8log x = 0.962x = 10^0.962 = 9.1632
<h2>
Answer:</h2><h3>Hacktivist group is most likely to responsible for this.</h3><h3 /><h2>
Explanation:</h2>
Hacktivism is defined as an action in which a computer or a network is targeted so that it could be misused in order to achieve a goal against any social or political action.
Hacktivists are the persons who perform hacktivism in order to seek attention on a specific thing or issue they want, from all the people.
In the given scenario, the hacking attack is hactivism as it is done to pull the company down.
Hacktivist can be a single person as well as a group of people working together. However they try to work anonymously so that they could not be traced.
<h3>I hope it will help you! </h3>
Answer:
nums = []
while True:
in = input()
if in:
nums.append(in)
else:
break
if nums:
avg = sum(nums) / len(nums)
for i in range(len(nums)):
if nums[i] == avg:
print(f"index: {i+1}")
print(nums[i])
else:
print(-1) # if there aren't any values in nums
Explanation:
Assuming that you are coding in Python 3x. The last 'else' statement is an edge case that you might want to consider, I don't know what you want to put there, but I'm just going to leave it as -1.
Answer:
b. LinkedHashSet
Explanation:
A LinkedHashSet is an ordered version of HashSet that maintains a doubly-linked List across all elements. When the iteration order is needed to be maintained this class is used. LinkedHashSet maintains a linked list of the entries in the set, in the order in which they were inserted.