click below
click below
Normal Size Small Size show me how
Java Cross 7.0
Head First Java Ch.1
| Question | Answer |
|---|---|
| Float | Defines a variable with a fractional value. |
| Void | Value of a function that means nothing is returned. |
| Public | Part of the program that can be accessed within other parts of the program. |
| Java | Object oriented computer programming language by Sun Micro-systems. |
| Arrays | Related values that act and are grouped into one value. |
| Loop | Repeats order command until ordered to stop. |
| While | Runs a command while in the process of doing something else. |
| Branch | Instruction in a computer program to begin execution of different instruction sequence. |
| DC | Direct Current Power, such as that from a power cable. |
| Compiler | Computer program that converts source code into another programming language. |
| Variable | Storage location and an associated symbolic name which contains some known or unknown quantity or information. |
| Int | An integer is a data type which represents some finite subset of the mathematical integers. |
| IC | A set of electronic circuits on one small plate ("chip") of semiconductor material. |
| IT | Department devoted to supporting a computer company. |
| SystemOutPrint | A standard output function used in java, where system specifies the package name, out specifies the class name and print is a function in that class. |
| Static | Term used to describe a constant |
| Main | Labels the code that the computer will read. |
| Method | A member of a class/object. |
| String | String or a series of characters read literally by a script. |
| Declare | Code used to define variable, integer, array, value to be used in code afterwards. |
| JVM | The run time engine of the Java Platform, which allows any program written in Java or other language compiled into Java byte code to run on any computer that has a native JVM. |
| Command | Set of code that instructs the computer what to process. |