Vocabulary Flashcards
Keep track of the programming terms I am learning.
Integrated Development Environment (IDE)
A program used to write, right n and debug code. Converts code to machine code.
Console
Text interface that outputs text from the program.
Modulus (%)
Remainder of divisional operation. I.e
Take 10 / by 3 and give remainder (not answer). Used to determine if an integer is even or odd.
Strings
Text or Anything enclosed by quotation marks.
Concatenation
Adding strings together
Variable
Something that can store information, can be referenced and manipulated. Components of a Variable include: type, name, a piece of information
Primitive type variables
Integers, booleans, floats, doubles, strings and chars.
Integer
Variable that can store a whole number in range from -2147484648 to 2147483648. (NO decimals).
Boolean
True or False
Floats
32 bits of information.
Can store number w/ decimal places.
Doubles (Double Variables)
64 bits of information. Can store decimals.
String Variables
Strings of letters. Useful for displaying text and storing input information.
Char Variables
Stands for character. Holds just one character. Useful to read a button press or one character without a string.
Naming Variables
Variable names must be one continuous string. Folks use camelCase.
Conditional Statements
Change the path of the code based on certain conditions. Include: If statement.
Else-if statement
Follows an if statement, only be evaluated when the if statement is false.