Answer:
import numpy as np#importing numpy module with an alias np.
def c(bitstring_array):# defining function c.
num_integer=bitstring_array.dot(2**np.arange(bitstring_array.size)[::-1])#bitstring conversion.
return num_integer#returning integer array.
print("Enter bits")
Bit_l=input().split(" ")#enter space separated bitstring.
for i in range(len(Bit_l)):#iterating over the bitstring.
Bit_l[i]=int(Bit_l[i])
bitstring_array=np.array(Bit_l)
print(c(bitstring_array))#function call.
Output:
Enter bits
1 1 1 0 0 1
57
Answer:
B. Graphs
Explanation:
Graphs are used to put certain things into categories. In this case Jamie has to enter different categories such as names, grades and the scored of the students. C and D don't make sense for this problem since they aren't actually what he is looking for. A is plausible but he needs it into a worksheet and labels aren't worksheets they are just labels. So B would be your answer. Also I took the quiz this is the correct answer.
Drag... you drag the mouse across the screen.
Answer:
Always encrypt data never store anything in plain text someone could use wireshark to pull out a data packet and if the data is not encrypted, expect things to happen.