mcq 隊列
Searching for relevant data in the surroundings
Searching into its own knowledge base for solutions
Seeking for human inputs for approaching towards the solution
None of the above
Correct answer: 2
Searching into its own knowledge base for solutions
Whenever an AI-based agent is confronted by a problem, it first looks into its database for a solution or similar type of problem. Then it looks at other places like perceiving the environment, applying logic, etc.
搜索周圍的相關數據
搜索自己的知識庫以尋求解決方案
尋求人力資源以尋求解決方案
以上都不是
正確答案:2
搜索自己的知識庫以尋求解決方案
每當基于AI的代理遇到問題時,它都會首先在其數據庫中查找解決方案或類似類型的問題。 然后,它著眼于其他地方,例如感知環境,應用邏輯等。
Random Search
Depth First Search
Breadth First Search
Best First Search
Options:
Only iv.
All i., ii., iii. and iv.
ii. and iv.
None of the above
Correct answer: 1
Only iv.
In the best first search, which is also known as the heuristic search, the agent picks up the best node based upon the heuristic value irrespective of where the node is.
隨機搜尋
深度優先搜索
廣度優先搜索
最佳優先搜索
選項:
只有iv。
全部i。,ii。,iii。 iv。
ii。 iv。
以上都不是
正確答案:1
只有iv。
在最佳的第一搜索(也稱為啟發式搜索)中,代理基于啟發式值選擇最佳節點,而與節點的位置無關。
It provides solution in a reasonable time frame
It provides the reasonably accurate direction to a goal
It considers both actual costs that it took to reach the current state and approximate cost it would take to reach the goal from the current state
All of the above
Correct answer: 4
All of the above
All the mentioned options are the properties that differentiate a heuristic search from other searches.
它在合理的時間內提供解決方案
它為目標提供了合理準確的方向
它既考慮了達到當前狀態所需的實際成本,也考慮了從當前狀態達到目標所需的近似成本
上述所有的
正確答案:4
上述所有的
所有提到的選項都是將啟發式搜索與其他搜索區分開的屬性。
"The search first begins from the root node and the first one of the child node’s sub-tree is completely traversed. That is, first all the one-sided nodes are checked, and then the other sided nodes are checked."
Which search algorithm is described in the above definition?
The Breadth First Search (BFS)
The Depth First Search (DFS)
The A* search
None of the above
Correct answer: 2
The Depth First Search (DFS)
In DFS, the search first begins from the root node and the first one of the child node’s sub-tree is completely traversed. That is, first all the one-sided nodes are checked, and then the other sided nodes are checked.
“搜索首先從根節點開始,子節點的子樹中的第一個子樹被完全遍歷。也就是說,首先檢查所有單側節點,然后再檢查另一側節點。”
上面的定義描述了哪種搜索算法?
廣度優先搜索(BFS)
深度優先搜索(DFS)
A *搜索
以上都不是
正確答案:2
深度優先搜索(DFS)
在DFS中,搜索首先從根節點開始,子節點的子樹中的第一個子樹被完全遍歷。 即,首先檢查所有單側節點,然后檢查另一側節點。
"In AI search algorithms, we look for a solution which provides us the most optimized way in terms of both time and cost to reach from the current state to the Goal State."
State whether the above condition is true or false?
True
False
Correct answer: 1
True
If we want to optimize our algorithm, we must take care of both the time limit as well as the cost that occurred in our searching. The lesser they are, the more efficient our algorithm is.
“在AI搜索算法中,我們正在尋找一種解決方案,該解決方案可為我們提供從當前狀態到目標狀態的時間和成本方面最優化的方式。”
說明上述條件是對還是錯?
真正
假
正確答案:1
真正
如果要優化算法,則必須考慮時間限制以及搜索中發生的成本。 它們越小,我們的算法就越有效。
翻譯自: https://www.includehelp.com/ml-ai/artificial-intelligence-searching-problem-aptitude-questions-and-answers-mcq.aspx
mcq 隊列