In a IF statement, you write ":" in order to show the meaning of "then"
== equalto
!= notequalto
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
When are ELIF used?
Allows programer to branch based on further conditions and is possible to use as many as possible
What is a Pseudocode?
Representation of a Algorithm that cannot be directly run but lets a person plan the program before coding it
What is a RAM?
Stands for Random Access Memory; type of computer memory used to store data that a computer CPU access
what is a run-time error?
When people tries to put more data that a RAM cannot hold
What are Logic errors?
When a program run perfectly but not as the programmer intended it to work
A hashtag makes a comment in a program
Linearsearch is a type of algorithm that starts at the beginning of the list and checks each item in the list until it finds the element it is looking for.
Binarysearch is a type of algorithm that repeatedly halve the range of all element to compare and find the position of the specific element .
Float is a data type for decimals
String data type can hold any type of data
Integer a data type used to hold whole numbers
Boolean-data type that has two possible values such as true or false
Variable- Data type that can store temporary data used within the program.
Function-instruction that cause other instruction to be run
Debug-identification and removal of errors in a program code
Bug- error in a program
comment-Supports the programmer to know what the program is doing and how it is doing it.
Syntax error- Error in a program that prevents the program from running properly.