Q1). What is the main task of a problem-solving agent? समस्या–समाधान एजेंट का मुख्य कार्य क्या है?
A). Solve the given problem and reach to goal /दी गई समस्या को हल करें और लक्ष्य तक पहुंचें B). To find out which sequence of action will get it to the goal state /यह पता लगाने के लिए कि कार्रवाई का कौन सा क्रम इसे लक्ष्य स्थिति तक ले जाएगा C). All of the mentioned /उल्लिखित सभी D). None of the mentioned /उल्लेखित कोई भी नहीं
Answer :- All of the mentioned /उल्लिखित सभी
Explanation :- The problem-solving agents are one of the goal-based agents.समस्या-समाधान एजेंट लक्ष्य-आधारित एजेंटों में से एक हैं।
Q2). What is state space?राज्य स्थान क्या है?
A). The whole problem /पूरी समस्या B). Your Definition to a problem /किसी समस्या के लिए आपकी परिभाषा C). Problem you design /आपके द्वारा डिज़ाइन की गई समस्या D). Representing your problem with variable and parameter /वेरिएबल और पैरामीटर के साथ अपनी समस्या का प्रतिनिधित्व करना
Answer :- Representing your problem with variable and parameter /वेरिएबल और पैरामीटर के साथ अपनी समस्या का प्रतिनिधित्व करना
Explanation :- Because state space is mostly concerned with a problem, when you try to solve a problem, we have to design a mathematical structure to the problem, which can only be through variables and parameters. eg. You have given a 4-gallon jug and another 3-gallon jug. Neither has measuring marker on it. You have to fill the jugs with water. How can you get exactly 2 gallons of water in to 4 gallons. Here the state space can defined as set of ordered pairs integers(x,y), such that x=0,1,2,3 or 4 and y=0,1,2 or 3; X represents the number of gallons in 4 gallon jug and y represents the quantity of water in the 3-gallon jug.क्योंकि राज्य स्थान अधिकतर किसी समस्या से संबंधित होता है, जब आप किसी समस्या को हल करने का प्रयास करते हैं, तो हमें समस्या के लिए एक गणितीय संरचना तैयार करनी होती है, जो केवल चर और मापदंडों के माध्यम से हो सकती है। जैसे. आपने एक 4 गैलन जग और दूसरा 3 गैलन जग दिया है। न ही उस पर मापने वाला मार्कर है। तुम्हें जगों में पानी भरना है. आप ठीक 2 गैलन पानी को 4 गैलन में कैसे प्राप्त कर सकते हैं? यहां राज्य स्थान को क्रमित जोड़े पूर्णांकों (x,y) के सेट के रूप में परिभाषित किया जा सकता है, जैसे कि x=0,1,2,3 या 4 और y=0,1,2 या 3; X 4 गैलन जग में गैलन की संख्या को दर्शाता है और y 3 गैलन जग में पानी की मात्रा को दर्शाता है।
Q3). The Set of actions for a problem in a state space is formulated by a___________ . किसी राज्य स्थान में किसी समस्या के लिए क्रियाओं का सेट ___________ द्वारा तैयार किया जाता है
A). Intermediate states /मध्यवर्ती राज्य B). Initial state /प्रारंभिक अवस्था C). Successor function, which takes current action and returns next immediate state /उत्तराधिकारी फ़ंक्शन, जो वर्तमान कार्रवाई करता है और अगली तत्काल स्थिति लौटाता है D). None of the mentioned /उल्लेखित कोई भी नहीं
Answer :- Successor function, which takes current action and returns next immediate state /उत्तराधिकारी फ़ंक्शन, जो वर्तमान कार्रवाई करता है और अगली तत्काल स्थिति लौटाता है
Explanation :- The most common formulation for actions uses a successor function. Given a particular state x, SUCCESSOR-FN(x) returns a set of (action, successor) ordered pairs, where each action is one of the legal actions in state x and each successor is a state that can be reached from x by applying the action.क्रियाओं के लिए सबसे सामान्य सूत्रीकरण एक उत्तराधिकारी फ़ंक्शन का उपयोग करता है। एक विशेष स्थिति x को देखते हुए, SUCCESSOR-FN(x) आदेशित जोड़े (कार्रवाई, उत्तराधिकारी) का एक सेट लौटाता है, जहां प्रत्येक क्रिया राज्य x में कानूनी क्रियाओं में से एक है और प्रत्येक उत्तराधिकारी एक ऐसी स्थिति है जिसे लागू करके x से पहुंचा जा सकता है कार्य।