camelCasea namingconventionfor variables,like myScorex++incrementby 1compilerSoftware thattranslates the Javasource code intothe Java class filewhich can be runon the computer.argumentthe actualparameters--like "16" forthe parameter"age"parametersnames ofvaluespassed toa methoddatatypedetermines thesize of memoryreserved for avariable, forexample intsyntaxerrorproblemwithcompilationmainmethodWhereexecutionstarts in aJavaprogram. finalkeyword thatmeans thevariable valuecan't bereassigned%theremainderoperator(modulus)instancevariablesdefinitionsofattributesfor objectsnullused to indicatean objectreferencedoesn't refer toany object yetStringa sequenceofcharactersor text. constructorscode that isused to createnew objectsand initializethe object’sattributesintdata typethat holdspos and negwholenumbersobjectan instanceof a classwith definedattributesdoublea decimalnumberlike 3.25CastingChangingthe type of avariableusing (type)namebooleanAnexpressionthat is eithertrue or false. classa file thatdefines anew datatype. Ablueprint...VariableA nameassociatedwith a memorylocation in thecomputer.instantiatecreatea newobjectmethodsdefinitions ofbehaviors orfunctions foran objectnewkeyword forcreatingnewobjectsreturnmethoda methodthat reportsa value tothe rest ofthe programcamelCasea namingconventionfor variables,like myScorex++incrementby 1compilerSoftware thattranslates the Javasource code intothe Java class filewhich can be runon the computer.argumentthe actualparameters--like "16" forthe parameter"age"parametersnames ofvaluespassed toa methoddatatypedetermines thesize of memoryreserved for avariable, forexample intsyntaxerrorproblemwithcompilationmainmethodWhereexecutionstarts in aJavaprogram. finalkeyword thatmeans thevariable valuecan't bereassigned%theremainderoperator(modulus)instancevariablesdefinitionsofattributesfor objectsnullused to indicatean objectreferencedoesn't refer toany object yetStringa sequenceofcharactersor text. constructorscode that isused to createnew objectsand initializethe object’sattributesintdata typethat holdspos and negwholenumbersobjectan instanceof a classwith definedattributesdoublea decimalnumberlike 3.25CastingChangingthe type of avariableusing (type)namebooleanAnexpressionthat is eithertrue or false. classa file thatdefines anew datatype. Ablueprint...VariableA nameassociatedwith a memorylocation in thecomputer.instantiatecreatea newobjectmethodsdefinitions ofbehaviors orfunctions foran objectnewkeyword forcreatingnewobjectsreturnmethoda methodthat reportsa value tothe rest ofthe program

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