Autofill is to automaticlly put the information in a spreadsheet
<span>Crawler-based search engines are what most of us are familiar with - mainly because that's what Google and Bing are. These companies develop their own software that enables them to build and maintain searchable databases of web pages (the engine), and to organise those pages into the most valuable and pertinent way to the user.</span>
<em>Missing Part:</em>
<em>Assume that the following variables have been properly declared and initialized: an int variable named selection, where 1 represents "beef", 2 represents "chicken", 3 represents "pasta", and all other values represent "fish"</em>
Answer:
if selection == 1:
print("beef")
elif selection == 2:
print("chicken")
elif selection ==3:
print("pasta")
else:
print("fish")
Explanation:
I've completer the question and the questin will be answered in python.
This checks if selection is 1. If yes, it prints the beef
<em>if selection == 1:</em>
<em> print("beef")</em>
This checks if selection is 2. If yes, it prints the chicken
<em>elif selection == 2:</em>
<em> print("chicken")</em>
This checks if selection is 3. If yes, it prints the pasta
elif selection ==3:
print("pasta")
Any other input is considered java/
else:
print("fish")
Software has to be reliable so that it does not create conflict or negative feelings amongst those who use it.
In this world where humans increasingly rely on the internet and software for information, programmers have to take special care so as to ensure that the members of the society are not affected negatively.
For instance, there have been moments when software led to negative effects such as:
- when Goøgle's algorithm tagged a black couple as gorillas
- Facebøok's algorithm tagged black men as gorillas
- Goøgle maps gave people the wrong directions
These are but a few instances where algorithms have messed up.
We can therefore conclude that it is important that programmers take extra care when designing programs so that they do not lead to negative feelings.
<em>Find out more at brainly.com/question/21328677.</em>