AP Unit 2 Vocabulary Flashcards
Terms : Hide Images [1]
7533196239 | If Statement | A command that allows computers to make a decision in a program | 0 | |
7533346443 | == | What we use inside of an IF statement to test if something is equal. | 1 | |
7546218042 | > | What we use inside of an IF statement to test if something is greater than. | 2 | |
7546220847 | >= | What we use inside of an IF statement to test if something is greater than or equal to. | 3 | |
7546223291 | < | What we use inside of an IF statement to test if something is less than. | 4 | |
7546225237 | <= | What we use inside of an IF statement to test if something is less than or equal to. | 5 | |
7546231790 | != | What we use inside of an IF statement to test if something is not equal to. | 6 | |
7707285002 | scope | When variables exist only inside of the {} of a command | 7 | |
7707290022 | while loop | A command that repeats a section of code until a Boolean condition is false. | 8 | |
7707298108 | De Morgan's Law | Allows you to factor into Boolean conditions | 9 | |
7707309954 | Short Circuit Evaluation | A built in feature of Java that stops evaluation if the first Boolean condition is true in an || and if the first Boolean condition is false in an && | 10 | |
7707323064 | Tracing Code | The act of computing a code manually | 11 | |
7707329934 | Truth Tables | A representation of all possible Boolean outcomes. | 12 | |
7707335443 | || | Or | 13 | |
7707335592 | && | And | 14 | |
7707340412 | persnickety | Big word | 15 | |
7707345058 | Boolean | A condition that is either true or false | 16 | |
7707347148 | Boolean Variable | A variable that only holds two values, either true or false. | 17 | |
7707353372 | Garbage Collection | When Java dumps the memory from a loop when completed. | 18 | |
7707360941 | Else | A command that occurs when an If statement is false. | 19 | |
7707363327 | else if | A command that tests a new Boolean condition when the first if statement is false. | 20 |