| Hint | Answer | % Correct |
|---|---|---|
| Fill in the blank | public static void {main}(string[] args) {} | 94%
|
| What datatype do you use to store a decimal? | A {double} | 88%
|
| What is the difference between an int and a long? | An int datatype only has {4} bytes of length, but a long datatype has double the length of an int. | 80%
|
| What type are integers? | Integers are {primitive} | 51%
|
| What company created Java? | {Oracle} (formerly known as "Sun Microsystems") | 46%
|
| what Naming Convention Is Used To Name Methods And Variables? | {Camel} Naming Convention | 43%
|
| How is object oriented programming different from procedural (or functional) programming? | Procedural programming does not use {objects} to contain content. | 37%
|
| What do methods represent in an object? | Methods represent {actions} that the given object can perform / partake in. | 33%
|
| How is java used in modern computer science occupations? | Java programmers mostly {maintain} systems that run java. Not many new programs are built in java, as there are faster and more intuitive languages that companies prefer. | 13%
|
| What type are strings? | Strings are {reference} types | 11%
|
| What Naming Convention Is Used To Name Classes? | {Pascal} Naming Convention | 10%
|