Answer:
num_guesses = int(input())
user_guesses = []
for i in range(num_guesses):
x = int(input())
user_guesses.append(x)
print(user_guesses)
Explanation:
This solution is provided in Python
This line prompts the user for a number of guesses
num_guesses = int(input())
This line initializes an empty list
user_guesses = []
This loop lets user input each guess
for i in range(num_guesses):
This line takes user input for each guess
x = int(input())
This appends the input to a list
user_guesses.append(x)
This prints the user guesses
print(user_guesses)
Answer:
d) Social networking sites
Explanation:
-Intranet is a network that is created by an organization to share information, tools and different services inside the company.
-Wikis are websites used to share content and knowledge and different users can modify the information.
-VoIP is a technology that allows you to make calls over the internet.
-Social networking sites are online platforms that allow people to connect with organizations and other people, create communities online and share different types of information.
-Unified communications is a system that has different communication methods through a single application.
According to this, the collaboration technology that is becoming more and more popular within organizations because it provides a means for forming ad hoc groups, networking and locating potential business allies is social networking sites.
You have the correct answer selected!