Computer Science defintions
CS Definitions: The following is a list of Java protected words and their meanings along with a set of typical control structures, their syntax, and what they do. These are in no particular order. abstract class - an interface that may have one or 2 of the methods implemented, and may also declare variables. Abstract classes are extended not implemented. bit - a 1 or 0 to be used in binary-based numbers. Primitive data type. boolean - a True or False value that can be used to quickly check the value of things in methods. Conditional control structures like if and while use boolean conditions. Primitive data type.