Answer:Females make up a large part of the market. The female fans often times spend more on things and have a greater amount of it, so if they are able to target them, they have a gained a large amount of the market
Explanation:
hope it helps
I think it'd be terminal concentrator. A(n) terminal concentrator is a front - end processor that multiplexes the traffic from hundreds of remote terminals into one port on a large computer.
A person can be able to measure if AI is acting like a human by the use of Turing test.
<h3>How do we measure of artificial intelligence is acting like a human?</h3>
One can measure if AI is Acting humanly via the use of a human who is said to interrogates the program and also the use of another person through the use of a terminal simultaneously.
Note that If after some amount of time or period, the interrogator is said to be unable to tell which is which, the program is said to have passed. To pass this test it is one that needs natural language processing.
Hence, A person can be able to measure if AI is acting like a human by the use of Turing test.
Learn more about AI from
brainly.com/question/25523571
#SPJ1
Answer:
def length( mystring):
count = 0
for i in mystring:
count += 1
return count
def reversed( mystring):
strlist = []
for i in range(length(mystring)):
strlist.append(mystring[(length(mystring) - 1) - i])
txt = "".join(strlist)
return txt
string = 'Yolanda'
print(reversed(string))
Explanation:
The python module defines two functions 'reversed' and 'length'. The length function counts the number of characters in a string variable while the reversed function reverses the string variable value.
Answer:
To look up functions and their purposes
Explanation:
Edg