What is the study of ways for computers to recognize and understand human language?

A) artificial intelligence
B) expert system
C) natural language processing
D) speech recognition
E) Turing test


Ans: C) natural language processing

Computer Science & Information Technology

You might also like to view...

We have a file that has a name in it, but the name is written one character per line. We need to write this name to the screen. What is wrong with the following code?

ifstream fileIn; fileIn.open("file.txt"); char ch; fileIn.get(ch) while(!fileIn.eof()) { cout.put(ch); fileIn.get(ch); } a. can not use put with cout. b. our output has new lines in it. c. nothing is wrong d. eof is not a member of an ifstream object

Computer Science & Information Technology

An itinerary provides a detailed plan for a meeting.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Why do wireless networks not use CSMA/CD to detect and avoid network collisions?

What will be an ideal response?

Computer Science & Information Technology

The simplest of the error-correcting codes is the _________ code.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology