(a) (2) What is the anatomical basis for (definition of) fee…

(a) (2) What is the anatomical basis for (definition of) feed-forward and feed-back connections in the neocortex? (b) (4) What is the hypothesized function of feed-forward and feed-back circuits? (c) (4) How does each neocortical module perform its predictive function, and how does it update its predictions?

/* Write a method called getNumbers that takes no parameters…

/* Write a method called getNumbers that takes no parametersand returns an array of integers. In the method, write a loop to generate 10 random numbers from 0 to 100. Store these in an array of size 10called numArray and return the array when the loop finishes. */ /*Write a method called calcAverage that takes an array of integersas a parameter and returns a double. Compute the average of the integersin the array that is passed and return this value. */ /*Write a method called printNumbers that takes a double number and an array of integers as parameters and prints the numbers in the array that are greater than the double number passed as a parameter. */ /*Call each of the methods above from the main method.The pseudocode for the main method is given below: Create an array of integers by calling the method getNumbersCompute the average by calling the method calcAverage Print the numbers greater than the average by calling the method printNumbers   */