Computers use binary - the digits 0 and 1 - to store data. A binary digit, or bit , is the smallest unit of data in computing.
Answer:
Augmented Reality
Explanation:
Augmented reality is a camera to overlay images on real-world scenery. Basically what the Pokemon GO app does.
Answer:
"Demultiplexing" is the right answer.
Explanation:
- A procedure for retransferring into genuine distinct, independent signals a transmission combining numerous digital as well as analog components, is considered as Demultiplexing.
- Lending incoming different segments towards appropriate application-level procedures instead on the positive side of the recipient.
Answer:
The main industries in Sierra Leone are: Diamond mining
Petroleum refining
Small - scale manufacturing (beverage, textiles,footwear)
Explanation:
They also engage in commercial ship repair
Answer:
see explaination for program code
Explanation:
scalar_product = 0
li=[]
li2=[]
#reading numbers1.txt and numbers2.txt intoli and li2 respectively
with open('numbers1.txt') as n1, open('numbers2.txt') as n2:
for line1 in n1:
li.append(int(line1))
for line2 in n2:
li2.append(int(line2))
#storing min list size into variable l
a=len(li)
b=len(li2)
if a<b:
l=a
else:
l=b
#calculating scalar product
for i in range(l):
scalar_product=scalar_product+li[i]*li2[i]
print("scalar product is",scalar_product)