Answer:
"Case-Based Reasoning" is the answer for the above question.
Explanation:
- Case-Based Reasoning is a process of decision-making theory in which the new problems were solved based on the previously solved problem.
- It is used in artificial intelligence and robots. This helps to make any AI and robots to do the work and take decisions on its own.
- The theory is used to make any computer that behaves like humans. It can take decisions like a human.
- The above question asked about the method by which the new problem is solved on behalf of the old problem. Hence the answer is "Case-Based Reasoning".
Before cellphones are able to be used to browse the internet, play games, record videos and take photos, its main purpose is similar to a telephone, albeit it is more portable. Early cellphones would not have games for you to play, not would it have emails for you to check, read, and reply to. Though ringtones might seem as an acceptable option, early cellphones would also have many selections or even any for you to choose.
Thus, the best option would be (B) contact list, which is necessary for a cellphone to have since the owner would need the number to be able to make a call.
Configure the Internet connection.
Configure the wireless router.
Enable NAT.
Configure DHCP
Secure the SOHO network.
Spell-check feature is the one that auto corrects any misspelled words
Answer:
The algorithm to find A is even or odd.
- input A.
- Check the remainder on diving by 2 by A%2.
- If remainder is 1 then A is odd Print(Odd).
- If remainder is 0 print(Even).
Explanation:
To check if the number is even or odd we use modulo operator(%).Which gives the remainder on dividing.So if we do this A%2 it will give the remainder that will come out on dividing the value of A by 2.
So if the remainder comes out is 1 then the number is odd and if the remainder is 0 then the number is odd.