Answer:
-80
Explanation:
We have: 1 0 1 1 0 0 0 0
Then we assign to each digit the corresponding power of 2.
See it in a table:
Then multiplying each digit by its corresponding power of 2 and then adding the results, we get:
Notice the very first digit to the left corresponding to the
power should be negative according to the format of two’s complement representation.
We get:
Answer:
Explanation:
Let's do this in Python, we will accept 2 arguments, the student name and an array of the 10 scores. The function would sort the scores out, get the last 6 scores, take the sum and finally out put them with the student name:
def total_six_highest_score(name, scores):
scores.sort()
highest_six_scores = scores[4:]
total_highest = sum(highest_six_scores)
return name, total_highest
Answer: science is the study of the world, and technology changes the world to solve problems.
Answer:
1G
Explanation:
1 'G' as in first generation.
Hope this helped. :)
difference between engineering and architecture are.
A engineer is a person whose job involves designing and building engines, machines, roads, bridges ,etc .
While architect design buildings only.