I'm assuming that what you are saying is that while the headphone is plugged in to the computer, it still plays on the computer speakers.
Most likely, the headphone outlet is dirty and need cleaning. To solve this, plug in your headphones into the headphone outlet, and take it out really quickly. Do this for a certain amount of time until it works.
If this does not work, check the settings if you are allowing it to play into external devices or not.
~
In the scenario in which you should to design a SOHO network on a work place. the other offices in the building also have wireless networks. while setting up a wireless network for the SOHO, your initial step should be to run a wireless site survey.
This survey will help you to know which access points (AP) are in the most optimal locations.
Answer:
Python file with appropriate comments given below
Explanation:
#Take the input file name
filename=input('Enter the input file name: ')
#Open the input file
inputFile = open(filename,"r+")
#Define the dictionary.
list={}
#Read and split the file using for loop
for word in inputFile.read().split():
#Check the word to be or not in file.
if word not in list:
list[word] = 1
#increment by 1
else:
list[word] += 1
#Close the file.
inputFile.close();
#print a line
print();
#The word are sorted as per their ASCII value.
fori in sorted(list):
#print the unique words and their
#frequencies in alphabetical order.
print("{0} {1} ".format(i, list[i]));