Intranet is a network that is internal and use internet technologies. It makes information of any company accessible to its employees and hence facilitates collaboration. Same methods can be used to get information, use resources, and update the data as that of the internet.
Hopefully this helped.
Okay sure.
I’ll 1)chords
2)pulse
3)aerophone
4) the answer is C
5)rhythm
Pretty sure those are the answers
Answer:
I am gonna say it is AMERICAN
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration