click below
click below
Normal Size Small Size show me how
Malaysia K
Unit 1 Lessons 1-3
| Term | Definition |
|---|---|
| Editor | large window when you type your code. |
| Line Numbers | Numbers at the beginning of each line. |
| Run | After typing your code, Click "Run" to test the program. |
| Output Panels | Shows the end result of the successful code (top right). |
| Console | Contains error messages (bottom right, box). |
| Editor Keys | Displays a list of shortcut keys. |
| Comments | Begin w/ two dashes and a space (--), which mark lines that are ignored by computers (several lines use -comment). |
| Definitions | Have an equal sign that separates the word that's being defined at the left of the equal sign from the right of the equal sign. Example: head=body |
| Keywords | Special words that are used to modify the way a computer programs words (boldface). |
| Identifiers | Name of variables or functions. |
| Operators | Math symbols +, -, *, and /. |
| Punctuation | The grammatical ans structure of a syntax. For example periods, semicolons, question marks, parenthesis, ect. |
| Keywords | Revised words used in programming that have special meanings to the compilers. |
| Ethics | The moral principles applied to a persons actions. |
| Plagiarism | The unethical act of passing off someones else's work as your own. |
| Problem Solver | A thinker that takes all of the knowledge and resources at hand to design solutions |
| Perseverance | The act of continuing to attempt something difficult, even if it takes a long time to succeed, often after many failures. |
| Growth Mindset | The belief that you can learn and grow through perseverance and resilience. |
| Debugging | The process of searching for, identifying, and fixing errors in a code/program. |
| Facilitating Questions | Questions that are used to guide conversation rather than provide answers. |
| Constructive Criticism | Suggesting improvements or questioning a decision in a healthy and supportive manner. |
| Specification | A statement at the top of the input panel that specifies the purpose of the program (as a comment so it is ignored by the program). |
| Documentation | A description of all the available libraries for your reference. |
| Library | A collection of predefined functions. |
| Import statement | Using the keyword import followed by the name of the library being imported. Once the library is imported into the code, the programmer can use any function defined in that library. |
| Hanging Indent | Formatting of a paragraph, citation, or definition for which all lines except the first are indented. |
| Header | The specification, name and date, and import statement. |
| Body | Where your actual code is (MUST INCLUDE PROGRAM). |