Your answer is A, input device.
Answer:
program that use artifical intelligents
Explanation:
Expert system, a computer program that uses artificial-intelligence methods to solve problems within a specialized domain that ordinarily requires human expertise.
Sharing network resources requires abiding by certain constraints, as follows:
<span>Security: Organizations present ongoing opportunities for unauthorized shared resources. Security mechanisms should be implemented to provide efficient parameters.Compatibility: Various client-server operating systems may be installed, but the client must have a compatible OS or application to access shared resources. Otherwise, the client may encounter issues that create communication delays and requires troubleshooting.Mapping: Any shared OS hardware drive, file or resource may be accessed via mapping, which requires a shared destination address and naming conventions.<span>File Transfer Protocol (FTP) and File Sharing: FTP is not affected by shared resources because the Internet is FTP’s backbone. File sharing is an LAN concept.</span></span>
The query that displays the required data is
SELECT name, orderID, productID FROM Products WHERE Product > 1
<h3>How to rewrite the query?</h3>
To do this, we make use of the following parameters:
- Table name: Products
- Columns to read: name, orderID and productID
- Condition: Product > 1
Next, we make use of the SELECT query
The syntax of the SELECT query is:
SELECT columns from table where condition
So, we have:
SELECT
name, orderID, productID
FROM Products
WHERE Product > 1
Read more about SQL query at:
brainly.com/question/19801436
#SPJ1