finalkeyword thatmeans thevariable valuecan't bereassignedreturnmethoda methodthat reportsa value tothe rest ofthe program%theremainderoperator(modulus)CastingChangingthe type of avariableusing (type)namemethodsdefinitions ofbehaviors orfunctions foran objectargumentthe actualparameters--like "16" forthe parameter"age"objectan instanceof a classwith definedattributescompilerSoftware thattranslates the Javasource code intothe Java class filewhich can be runon the computer.instancevariablesdefinitionsofattributesfor objectsx++incrementby 1datatypedetermines thesize of memoryreserved for avariable, forexample intintdata typethat holdspos and negwholenumbersmainmethodWhereexecutionstarts in aJavaprogram. parametersnames ofvaluespassed toa methodconstructorscode that isused to createnew objectsand initializethe object’sattributesbooleanAnexpressionthat is eithertrue or false. classa file thatdefines anew datatype. Ablueprint...doublea decimalnumberlike 3.25camelCasea namingconventionfor variables,like myScoresyntaxerrorproblemwithcompilationnullused to indicatean objectreferencedoesn't refer toany object yetnewkeyword forcreatingnewobjectsVariableA nameassociatedwith a memorylocation in thecomputer.Stringa sequenceofcharactersor text. instantiatecreatea newobjectfinalkeyword thatmeans thevariable valuecan't bereassignedreturnmethoda methodthat reportsa value tothe rest ofthe program%theremainderoperator(modulus)CastingChangingthe type of avariableusing (type)namemethodsdefinitions ofbehaviors orfunctions foran objectargumentthe actualparameters--like "16" forthe parameter"age"objectan instanceof a classwith definedattributescompilerSoftware thattranslates the Javasource code intothe Java class filewhich can be runon the computer.instancevariablesdefinitionsofattributesfor objectsx++incrementby 1datatypedetermines thesize of memoryreserved for avariable, forexample intintdata typethat holdspos and negwholenumbersmainmethodWhereexecutionstarts in aJavaprogram. parametersnames ofvaluespassed toa methodconstructorscode that isused to createnew objectsand initializethe object’sattributesbooleanAnexpressionthat is eithertrue or false. classa file thatdefines anew datatype. Ablueprint...doublea decimalnumberlike 3.25camelCasea namingconventionfor variables,like myScoresyntaxerrorproblemwithcompilationnullused to indicatean objectreferencedoesn't refer toany object yetnewkeyword forcreatingnewobjectsVariableA nameassociatedwith a memorylocation in thecomputer.Stringa sequenceofcharactersor text. instantiatecreatea newobject

CSAwesome Ch1-2.4 - Call List

(Print) Use this randomly generated list as your call list when playing the game. There is no need to say the BINGO column name. Place some kind of mark (like an X, a checkmark, a dot, tally mark, etc) on each cell as you announce it, to keep track. You can also cut out each item, place them in a bag and pull words from the bag.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  1. keyword that means the variable value can't be reassigned
    final
  2. a method that reports a value to the rest of the program
    return method
  3. the remainder operator (modulus)
    %
  4. Changing the type of a variable using (type) name
    Casting
  5. definitions of behaviors or functions for an object
    methods
  6. the actual parameters--like "16" for the parameter "age"
    argument
  7. an instance of a class with defined attributes
    object
  8. Software that translates the Java source code into the Java class file which can be run on the computer.
    compiler
  9. definitions of attributes for objects
    instance variables
  10. increment by 1
    x++
  11. determines the size of memory reserved for a variable, for example int
    data type
  12. data type that holds pos and neg whole numbers
    int
  13. Where execution starts in a Java program.
    main method
  14. names of values passed to a method
    parameters
  15. code that is used to create new objects and initialize the object’s attributes
    constructors
  16. An expression that is either true or false.
    boolean
  17. a file that defines a new data type. A blueprint...
    class
  18. a decimal number like 3.25
    double
  19. a naming convention for variables, like myScore
    camelCase
  20. problem with compilation
    syntax error
  21. used to indicate an object reference doesn't refer to any object yet
    null
  22. keyword for creating new objects
    new
  23. A name associated with a memory location in the computer.
    Variable
  24. a sequence of characters or text.
    String
  25. create a new object
    instantiate