Artificial intelligence systems that attempt to imitate the way a human brain works are called ____.
A. neural networks
B. expert systems
C. robots
D. biometric systems
Answer: A
You might also like to view...
What is the key advantage of programming your apps for multicore systems?
What will be an ideal response?
COGNITIVE ASSESSMENT You want a form of backup that copies all program and data files. Which of the following will you use?
A. archival backup B. differential backup C. selective backup D. partial backup
In the bubble sort algorithm, which code accomplishes swapping values in elements at positions index and index + 1?
A. list[index] = list[index + 1] list[index + 1] = list[index] B. list[index + 1] = list[index] list[index] = list[index + 1] C. list[index] = temp; list[index] = list[index + 1]; temp = list[index + 1]; D. temp = list[index]; list[index] = list[index + 1]; list[index + 1] = temp;
_________ determines the control and pipeline organization.
A. Calculation B. Execution sequencing C. Operations performed D. Operands used