Principles of Information Systems (MindTap Course List)
Principles of Information Systems (MindTap Course List)
13th Edition
ISBN: 9781305971776
Author: Ralph Stair, George Reynolds
Publisher: Cengage Learning
Question
Book Icon
Chapter 10, Problem 16RQ
Program Plan Intro

Artificial Intelligence:

Artificial Intelligence (AI) simulates thinking and behaves as human such as the capability of giving reason and learning.

  • Its main aim is to develop a system which mimics human intelligence.
  • It increases the speed and consistency of decision making, helps in solving the problems without lending complete information.
  • The problems which cannot be solved by the conventional computing can be resolved using the AI system.

Components of Artificial Intelligence:

The six key components of AI are as follows:

  • Expert systems: A work performed by a human expert and the same task is performed by a computer application is known as expert systems.
  • Robotics: It is a nothing but a development of computer devices that can perform tasks that are difficult for humans which requires higher precision.
  • Vision systems: A hardware or a software program that allows the processor (computer) to capture, store and process visual images.
  • Natural language processing: As the name suggests, it allows the processor to infer and respond to the statements and commands (human level) that are given in natural language like English.
  • Learning systems: It is an integration of software and hardware that permits the processor to change how it functions and how it responds to certain conditions based on comment it collects.
  • Neural networks: Neural network is also called as artificial neural network where the AI attempts to imitate the way human brain works. It recognize and act on the patterns or trends that it detects in large sets of information.

Blurred answer
Students have asked these similar questions
The following is code for a disc golf program written in C++:   player.h:   #ifndef PLAYER_H #define PLAYER_H #include <string> #include <iostream> class Player { private:    std::string courses[20]; // Array of course names    int scores[20];          // Array of scores    int gameCount;           // Number of games played public:    Player();                 // Constructor    void CheckGame(const std::string& courseName, int gameScore);    void ReportPlayer(int playerId) const; }; #endif // PLAYER_H   player.cpp:   #include "player.h" #include <iomanip> Player::Player() : gameCount(0) {} void Player::CheckGame(const std::string& courseName, int gameScore) {    for (int i = 0; i < gameCount; ++i) {        if (courses[i] == courseName) {            // If course has been played, check for minimum score            if (gameScore < scores[i]) {                scores[i] = gameScore; // Update to new minimum score            }            return; // Exit after…
What is the cyclomatic complexity of the diagram below, and how did you find it?
Write the following code segment in MARIE’s assembly language:if X <= Y thenY = Y - 1;else if X != Zthen Y = Y + 1;else Z = Z - 1

Chapter 10 Solutions

Principles of Information Systems (MindTap Course List)

Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Principles of Information Systems (MindTap Course...
Computer Science
ISBN:9781285867168
Author:Ralph Stair, George Reynolds
Publisher:Cengage Learning
Text book image
Principles of Information Systems (MindTap Course...
Computer Science
ISBN:9781305971776
Author:Ralph Stair, George Reynolds
Publisher:Cengage Learning