Answer:
* The code is in Python
def joinStrings():
join = ""
while True:
str = input("Enter a word or Q to stop: ")
if str == "Q":
break
else:
join = join + " " + str
return join
print(joinStrings())
Explanation:
Create a function called joinStrings
Initialize join variable to hold the strings that will be combined
Create a while loop that stops when user enters "Q". Otherwise, ask the user for a new string and join it to the join variable with a space
When the loop is done, return the join
Call the function and print the result
Answer:
It focuses on one task and has no self awareness
The matchup are:
- information support and services - providing technical assistance to users
- network systems - creating interactive materials
- programming and software development - designing and developing applications for an organization's use
- web and digital communications -developing and implementing an
- organization's technology infrastructure
<h3>What is network system?</h3>
A network is known to be made up of a set of computers, servers, network devices, and other devices that are linked so that it can allow data sharing.
Therefore, The matchup are:
- information support and services - providing technical assistance to users
- network systems - creating interactive materials
- programming and software development - designing and developing applications for an organization's use
- web and digital communications -developing and implementing an
- organization's technology infrastructure
Learn more about network systems from
brainly.com/question/1326000
#SPJ1