"In an artificial neural network, what input values will cause the neuron below to produce an output of 1". Group of answer choices All three 0 All three 1 Any combination in which the center input is 0 and at least one other input is 1 Any combination in which at least one input is 1

Respuesta :

Answer:

Any combination in which at least one input is 1. One should know that in ANN or perceptron, the next neuron value is summation of values of all the previous connected neurons.

Explanation:

Any combination in which at least one input is 1. One should know that in ANN or perceptron, the next neuron value is summation of values of all the previous connected neurons. Hence, if 1,0,0 are input, the output is 1+0+0=1. and in case 0,0, and 0 it is 0+0+0=0 and in case of 1,1,1 it is 1+1+1=3. And that confirms the above answer as being correct option.