a ship goes missing in the pacific ocean. a programmer develops a program that can analyze satellite imagery…

a ship goes missing in the pacific ocean. a programmer develops a program that can analyze satellite imagery for signs of the ship (based on colors and reflections). the programmer tries to run the program on their own computer and realizes their computer is too slow to process all of the satellite imagery of the pacific ocean in time for an emergency rescue. they decide to use distributed computing to improve the performance. how could a distributed computing solution help? choose 1 answer: a a distributed computing solution can analyze multiple images at once by utilizing all the processors on the computer. b a distributed computing solution would complete each imagery analysis operation more quickly by using binary search to halve the number of images. c a distributed computing solution would complete each imagery analysis operation more quickly by using heuristics to look for signs of the ship. d a distributed computing solution can process multiple images at once by using multiple computers.
Answer
Brief Explanations:
Distributed computing uses multiple computers (nodes) to work on a task together. Instead of relying on a single - slow computer to process all satellite imagery, multiple computers can be used to process different parts of the imagery simultaneously. Option A is about using processors on a single computer (not distributed computing), option B's binary search is not related to distributed computing's core concept here, and option C's heuristics are not the main advantage of distributed computing in this context.
Answer:
D. A distributed computing solution can process multiple images at once by using multiple computers.