Answer:
Explanation:
def octal_to_string(octal):
result = ''
value_letters = [(4, 'r'), (2, 'w'), (1, 'x')]
for c in [int(n) for n in str(octal)]:
for value, letter in value_letters:
if c >= value:
result += letter
c -= value
else:
result += '-'
return result
print(octal_to_string(755))
print(octal_to_string(644))
print(octal_to_string(750))
print(octal_to_string(600))
**************************************************
Answer: a slide with a size 18 font and five images
Explanation:
the text isnt that big to overpower the images and vise versa
The triangle indicates that the clock signal is an edge-triggered signal.
The circle indicates that the signal is low-active (ie., inverted).
The 74LS74 has a positive-edge trigger clock (low to high).
Answer:
Computer viruses are referred to living viruses as they both have similar effects.
Explanation:
While living viruses invade cells and cause harmful effects on the body, computer viruses basically do the same thing. Computer viruses are a malicious code that inserts itself into a computer. It's designed to spread to one computer to another, just like a living virus.
Similarities:
- Spreads from one host to another.
- They both alter/harm the host.
- Both can replicate itself.
Differences:
- A computer virus is manmade, while living viruses aren't.
- A computer virus needs to be removed manually through an app or software while living viruses are almost curable medicine.
- A computer virus effects machines and software while living viruses only infect living organisms.