<span>B. users vote on the relevance of the source, which affects whether it will appear in future searches. </span>
The correct answer is tangible objects
Answer:
The information obtained is
- Figure out who has been waiting the longest
- Make a map of the waitlisted people
Explanation:
The information obtained from the combine data set is as follows
- Figure out who has been waiting the longest
- Make a map of the waitlisted people
The information from the waitlist database is combined thus the overall wait time of the participants is estimated. Also the map of people around the globe is also made possible on the basis of the second database.
<h2>A line of code that begins with the "while" needs to end with <u>":"</u> symbol</h2>
Explanation:
In python, the while loop statement has ":" at the end of the line.
<u>Syntax:</u>
while expression:
code(s) or statement(s)
<u>Example:</u>
cnt = 0
while (cnt < 5):
print 'cnt:', cnt
cnt = cnt + 1
Like other programming languages, while loop works in the same way except that in python it comes alone with "else" statement. When the condition is false, "else" statement gets executed.
<u>Example:</u>
#!/usr/bin/python
cnt = 0
while cnt < 5:
print cnt, " is less than 5"
cnt = cnt + 1
else:
print cnt, " is not less than 5"
do your own work ************************************************************************************************************************************************************