In the game the Vikings speak icelandic
Answer:
1. is the answer
Explanation:
<h2>mark me as brainlest</h2>
Good question. When one Endorces or "Hires/ payes" someone again for a job/thing they did. I think. :)
Answer:
Mac comes with the up (or is bundled with) the up-to-date OS where with windows there are multiple flavors to choose from.
Explanation:
Sorry if its wrong
Answer:
Below are the python Program for the above question:
Explanation:
keysList =[1,61,68,64]#key list items.
itemsList =[1,2,3,4]#item list items.
for x in range(len(keysList)):#for loop.
if(keysList[x]>60):#check the value to be greator.
print(itemsList[x],end=";")#print the value.
Output:
- The above code will print as "2;3;4;".
Code Explanation:
- The above code is in python language, in which the first and second line of the code defines a list. That list can be changed by the user when he wants.
- Then there is a or loop that scans the keylist items and matches the items that it is greater than 60 or not. If it then takes the location and prints the itemlist by the help of that location.