What are application fields of AI?

1 Answer

Answer :

Almost every branch of science and engineering currently shares the tools and techniques available in the domain of artificial intelligence. However, for the sake of the convenience of the readers, we mention here a few typical applications, where AI plays a significant and decisive role in engineering automation.

Expert Systems: For example, we illustrate the reasoning process involved in an expert system for a weather forecasting problem with special emphasis to its architecture. An expert system consists of a knowledge base, database and an inference engine for interpreting the database using the knowledge supplied in the knowledge base. The inference engine attempts to match the antecedent clauses (IF parts) of the rules with the data stored in the database. When all the antecedent clauses of a rule are available in the database, the rule is fired, resulting in new inferences. The resulting inferences are added to the database for activating subsequent firing of other rules. In order to keep limited data in the database, a few rules that contain an explicit consequent (THEN) clause to delete specific data from the databases are employed in the knowledge base. On firing of such rules, the unwanted data clauses as suggested by the rule are deleted from the database. Here PR1 fires as both of its antecedent clauses are present in the database. On firing of PR1, the consequent clause "it-will-rain" will be added to the database for subsequent firing of PR2.

Image Understanding and Computer Vision: A digital image can be regarded as a twodimensional array of pixels containing gray levels corresponding to the intensity of the reflected illumination received by a video camera. For interpretation of a scene, its image should be passed through three basic processes: low, medium and high level vision. The importance of low level vision is to pre-process the image by filtering from noise. The medium level vision system deals with enhancement of details and segmentation (i.e., partitioning the image into objects of interest ). The high level vision system includes three steps: recognition of the objects from the segmented image, labeling of the image and interpretation of the scene. Most of the AI tools and techniques are required in high level vision systems. Recognition of objects from its image can be carried out through a process of pattern classification, which at present is realized by supervised learning algorithms. The interpretation process, on the other hand, requires knowledge-based computation.

Speech and Natural Language Understanding: Understanding of speech and natural languages is basically two classical problems. In speech analysis, the main problem is to separate the syllables of a spoken word and determine features like amplitude, and fundamental and harmonic frequencies of each syllable. The words then could be identified from the extracted features by pattern classification techniques. Recently, artificial neural networks have been employed to classify words from their features. The problem of understanding natural languages like English, on the other hand, includes syntactic and semantic interpretation of the words in a sentence, and sentences in a paragraph. The syntactic steps are required to analyze the sentences by its grammar and are similar with the steps of compilation. The semantic analysis, which is performed following the syntactic analysis, determines the meaning of the sentences from the association of the words and that of a paragraph from the closeness of the sentences. A robot capable of understanding speech in a natural language will be of immense importance, for it could execute any task verbally communicated to it. The phonetic typewriter, which prints the words pronounced by a person, is another recent invention where speech understanding is employed in a commercial application.

Scheduling: In a scheduling problem, one has to plan the time schedule of a set of events to improve the time efficiency of the solution. For instance in a class-routine scheduling problem, the teachers are allocated to different classrooms at different time slots, and we want most classrooms to be occupied most of the time. Flowshop scheduling problems are a NP complete problem and determination of optimal scheduling (for minimizing the make-span) thus requires an exponential order of time with respect to both machine-size and job-size. Finding a suboptimal solution is thus preferred for such scheduling problems. Recently, artificial neural nets and genetic algorithms have been employed to solve this problem. The heuristic search, to be discussed shortly, has also been used for handling this problem.

Intelligent Control: In process control, the controller is designed from the known models of the process and the required control objective. When the dynamics of the plant is not completely known, the existing techniques for controller design no longer remain valid. Rule-based control is appropriate in such situations. In a rule-based control system, the controller is realized by a set of production rules intuitively set by an expert control engineer. The antecedent (premise) part of the rules in a rule-based system is searched against the dynamic response of the plant parameters. The rule whose antecedent part matches with the plant response is selected and fired. When more than one rule is fir able, the controller resolves the conflict by a set of strategies. On the other hand, there exist situations when the antecedent part of no rules exactly matches with the plant responses. Such situations are handled with fuzzy logic, which is capable of matching the antecedent parts of rules partially/ approximately with the dynamic plant responses. Fuzzy control has been successfully used in many industrial plants. One typical application is the power control in a nuclear reactor. Besides design of the controller, the other issue in process control is to design a plant (process) estimator, which attempts to follow the response of the actual plant, when both the plant and the estimator are jointly excited by a common input signal. The fuzzy and artificial neural network-based learning techniques have recently been identified as new tools for plant estimation.

Related questions

Description : In AI programming, a list may contain ___________ a) cells b) fields c) pointers d) all of the mentioned

Last Answer : d) all of the mentioned

Description : Which of the following contains output segments of AI programming? a) Printed language and synthesized b) Manipulation of physical object c) Locomotion d) All of the mentioned

Last Answer : d) All of the mentioned

Description : The company that grew out of research at the MIT AI lab is ____________ a) AI corp b) LMI c) Symbolics d) Both LMI & Symbolics

Last Answer : d) Both LMI & Symbolics

Description : The area of AI that investigates methods of facilitating communication between people and computers is ___________ a) natural language processing b) symbolic processing c) decision support d) robotics

Last Answer : a) natural language processing

Description : What is Weak AI? a) the embodiment of human intellectual capabilities within a computer b) a set of computer programs that produce output that would be considered to reflect intelligence if it ... the study of mental faculties using mental models implemented on a computer d) all of the mentioned

Last Answer : c) the study of mental faculties using mental models implemented on a computer

Description : Seymour Papert of the MIT AI lab created a programming environment for children called ___________ a) BASIC b) LOGO c) MYCIN d) FORTRAN

Last Answer : b) LOGO

Description : Input segments of AI programming contain(s)? a) sound b) smell c) touch d) none of the mentioned

Last Answer : d) none of the mentioned

Description : An AI system developed by Daniel Bobrow to read and solve algebra word problems. a) SHRDLU b) SIMD c) BACON d) STUDENT

Last Answer : d) STUDENT

Description : What are the two major aspects which combines AI Planning problem? a) Search & Logic b) Logic & Knowledge Based Systems c) FOL & Logic d) Knowledge Based Systems

Last Answer : a) Search & Logic

Description : Which were built in such a way that humans had to supply the inputs and interpret the outputs? a) Agents b) AI system c) Sensor d) Actuators

Last Answer : b) AI system

Description : Which is not the commonly used programming language for AI? a) PROLOG b) Java c) LISP d) Perl

Last Answer : d) Perl

Description : Which is the first AI programming language? a) BASIC b) FORTRAN c) IPL(Inductive logic programming) d) LISP

Last Answer : d) LISP

Description : To invoke the LISP system, you must enter __________ a) AI b) LISP c) CL (Common Lisp) d) Both LISP and CL

Last Answer : b) LISP

Description : The conference that launched the AI revolution in 1956 was held at? a) Dartmouth b) Harvard c) New York d) Stanford

Last Answer : a) Dartmouth

Description : Explain State space representation of AI with help of Water jug problem.

Last Answer : "You are given two jugs, a 4-gallon one and a 3-gallon one. Neither has any measuring markers on it. There is a tap that can be used to fill the jugs with water. How can you get exactly 2 gallons of water into the 4-gallon jug?". ... the goal state=(2,0) (0,0) (0,3) (3,0) (3,3) (4,2) (0,2) (2,0)

Description : What is Artificial Intelligence? Explain history and importance of AI.

Last Answer : Ans:- Artificial Intelligence is the study of how to make computers do things, which at the moment, people can do better. History of AI:- Although the computer provided the technology necessary ... ability of the human mind to reason and learn in an environment of uncertainty and imprecision .

Description : To invoke the LISP system, you must enter a. AI b. LISP c. both b and c d. None of the above

Last Answer : d. None of the above

Description : The first AI programming language was called: a. BASIC b. FORTRAN c. IPL d. LISP

Last Answer : c. IPL

Description : An AI technique that allows computers to understand associations and relationships between objects and events is called: a. heuristic processing b. cognitive science c. relative symbolism d. pattern matching

Last Answer : d. pattern matching

Description : Weak AI is a. the embodiment of human intellectual capabilities within a computer. b. a set of computer programs that produce output that would be considered to reflect intelligence if it were ... faculties through the use of mental models implemented on a computer. d. All of the above

Last Answer : c. the study of mental faculties through the use of mental models implemented on a computer

Description : Define Artificial Intelligence (AI).

Last Answer : The study of how to make computers do things at which at the moment, people are better. Systems that think like humans Systems that act like humans Systems that think rationally Systems that act rationally

Description : Which is not the commonly used programming language for AI? A. PROLOG B. LISP C. Perl D. Java script

Last Answer : C. Perl 

Description : Which AI should understand the human emotions, people, and beliefs and be able to interact socially like humans. A. Reactive machine B. Limited memory C. Theory of mind D. None of above

Last Answer : C. Theory of mind  

Description : Which AI system not store memories or past experiences for future actions. A. Reactive machine B. Limited memory C. Theory of mind D. None of above

Last Answer : A. Reactive machine 

Description : ____ AI is hypothetical concept of AI. A. Narrow AI B. General AI C. Super AI D. None of above

Last Answer : C. Super AI 

Description : Ability to think, puzzle, make judgments, plan, learn, communication by its own is known as ___ AI. A. Narrow AI B. General AI C. Super AI D. None of above

Last Answer : C. Super AI 

Description : Machine can perform any task better than human with cognitive properties is known as ___ AI. A. Narrow AI B. General AI C. Super AI D. None of above

Last Answer : C. Super AI 

Description : Playing chess, purchasing suggestions on e-commerce site, self-driving cars, speech recognition, and image recognition are the example of ____. A. Narrow AI B. General AI C. Super AI D. None of above

Last Answer : A. Narrow AI 

Description : The worldwide researchers are now focusing on developing machines with ___ AI. A. Narrow AI B. General AI C. Super AI D. None of above

Last Answer : B. General AI 

Description : The idea behind _________AI to make such a system which could be smarter and think like a human by its own. A. Narrow AI B. General AI C. Super AI D. None of above

Last Answer : B. General AI 

Description :  ____ AI is a type of intelligence which could perform any intellectual task with efficiency like human. A. Narrow AI B. General AI C. Super AI D. None of above

Last Answer : B. General AI 

Description : IBM Watson supercomputer comes under ____ AI. A. Narrow AI B. General AI C. Neural AI D. None of above

Last Answer : A. Narrow AI 

Description : Apple siri is a good example of ______ AI. A. Narrow AI B. General AI C. Neural AI D. None of above

Last Answer : A. Narrow AI 

Description : Strong AI is__________ A. The embodiment of human intellectual capabilities within a computer. B. A set of computer programs that produce output that would be considered to reflect intelligence if it were generated ... mental models implemented on a computer D. All of the above E. None of the above

Last Answer : A. The embodiment of human intellectual capabilities within a computer. 

Description : Weak AI is____________ A. The embodiment of human intellectual capabilities within a computer. B. A set of computer programs that produce output that would be considered to reflect intelligence if it were generated ... mental models implemented on a computer D. All of the above E. None of the above

Last Answer : C. The study of mental faculties through the use of mental models implemented on a computer 

Description : Narrow AI is performs multiple task at a time. A. True B. False

Last Answer : B. False 

Description : _____ AI is able to perform dedicated task. A. Narrow AI B. General AI C. Neural AI D. None of above

Last Answer : A. Narrow AI 

Description : Weak AI is also known as ____ A. Narrow AI B. General AI C. Neural AI D. None of above

Last Answer : A. Narrow AI 

Description : The core components are constituents of AI are derived from A. Concept of logic B. Cognition C. Computation D. All of above

Last Answer : D. All of above 

Description : ______ is used for AI because it supports the implementation of software that computes with symbols very well. A. LISP B. ELIZA C. PROLOG D. NLP 

Last Answer : A. LISP 

Description : PROLOG is an AI programming language which solves problems with a form of symbolic logic known as ______. A. Propositional logic B. Tautology C. Predicate calculus D. Temporal logic

Last Answer : C. Predicate calculus 

Description : The first widely used commercial form of Artificial Intelligence (Al) is being used in many popular products like microwave ovens, automobiles and plug in circuit boards for desktop PCs. What is name of AI? A. Boolean logic B. Human logic C. Fuzzy logic D. Functional logic

Last Answer : C. Fuzzy logic 

Description : The first AI programming language was called: A. BASIC B. FORTRAN C. IPL D. LISP

Last Answer : C. IPL 

Description : Who is a father of AI? A. Alain Colmerauer B. John McCarthy C. Nicklaus Wirth D. Seymour Papert

Last Answer : B. John McCarthy 

Description : The first AI programming language was called: A. BASIC B. FORTRAN C. IPL D. LISP E. None of the above 

Last Answer : C. IPL 

Description : What of the following is considered to be a pivotal event in the history of AI. A. 1949, Donald O, The organization of Behavior. B. 1950, Computing Machinery and Intelligence. C. 1956, Dartmouth ... Conference Organized by John McCarthy. D. 1961, Computer and Computer Sense. E. None of the above

Last Answer : C. 1956, Dartmouth University Conference Organized by John McCarthy. 

Description : The conference that launched the AI revolution in 1956 was held at: A. Dartmouth B. Harvard C. New York D. Stanford E. None of the above

Last Answer : A. Dartmouth 

Description : DARPA, the agency that has funded a great deal of American AI research, is part of the Department of: A. Defense B. Energy C. Education D. Justice E. None of the above

Last Answer : A. Defense 

Description : Which of these schools was not among the early leaders in AI research? A. Dartmouth University B. Harvard University C. Massachusetts Institute of Technology D. Stanford University E. None of the above

Last Answer : B. Harvard University 

Description : Which of the following is an application of NN (Neural Network)? a) Sales forecasting b) Data validation c) Risk management d) All of the mentioned

Last Answer : d) All of the mentioned