Python & ICT Flashcards
You have to use the same number of spaces in a python block.
Cool!
What are four limitations of AI
- Developing AI systems is expensive
- Programming or training these systems is difficult
- Lack of feelings, emotions or creativity in these systems
- Dependency on machines increases as AI develops
What are expert systems?
Applications which include machines and programs that give explanation and advice to humans
What is the steps used for problem solving AI?
- Defining a problem
- Analysing it
- Identifying solutions
- Choosing a solution
- Implementing
What are tasks humans do on a routine basis without special training called?
Mundane tasks
What systems using AI can comprehend visual input?
Visual systems
What is an intelligent system?
It’s the science/engineering to make intelligent machines.
especially intelligent computer programs
What is speech recognition?
It’s AI capable of handling speech-related data
What is AI?
It is manmade thinking power/ Artificial intelligence
What are assignment operators?
They’re operators used to assign values to variables.
What are relational operators?
These are operators used to compare two values and return a True or False
What does the = operator mean?
It means it asigns a Variable Num to something.
What does +=, -=, *= and /= mean?
It means you take the value of the variable and run it through the math’s operator using the right number
according to the symbol of course
e.g Num+=5 would be the same as Num+5
What is the %= operator?
It displays the remainder after dividing the value
e.g Num%=5 would give the remainder of Num/5
What is //= operator?
It’s a division that rounds down to the nearest ‘floor’ number
e.g 7/2 = 3.5 but it’s floor number would be 3