computerr theory

4
https://rskoura.wordpress.com/icse-java-defnitions/ Abstract class : No object can be created for this class. These class created so that other classes can inherit them. Access control : A way to restrict access to classes, variables and m API : Application programming interface. API contains classes which a programmer can use to build applications and applets. Applets : A ava program embedded in an !T"# document and runs in a web$browser. Argument : A value sent to a method when the method is called. Array : A list of values of the same type. All values in the array ha name. They are accessed individually using an inde%&subscript A'(II : A standard set of values for representing te%t characters. )ase class : A class from which another class inherits functionality. called a superclass. )it : The smallest piece of data that a computer understands. A bit c represent only two values, * or +. )oolean : A value that can be either true of false. )ranching : hen an e%ecution jumps forward or bac-ward in a program. )rowser : A program used for reading, displaying and interacting with in the orld ide eb. )yte : A data type which is bits long. )ytecode : The machine independent output of the ava (ompiler which as input to the ava Interpreter /The ava 0irtual "achine1. (asting : (onverting one type of value to another. (haracter : A value used in te%t. (lass : A collection of methods and variables that an object can have template for building objects. .class file : A file containing the machine independent ava )yte cod (lass variable : A variable allocated once per class. (lass variables class scope and belong to the entire class instead of an instance. (omparison operators : 2, 3, 24, 34, 44, 54 (ompiler : A language translator. A program that transforms source co another format without e%ecuting the program. (oncatenate : Adding one te%t string to the end of another. (onditional branching : hen a program jumps to a different part of a program base on a condition being met. (onstant : A value that never changes throughout the life of a progra (onstructor : A method used to create an instantiation of a class.

Upload: aman

Post on 03-Nov-2015

217 views

Category:

Documents


0 download

DESCRIPTION

tyk

TRANSCRIPT

https://rskoura.wordpress.com/icse-java-definitions/ Abstract class : No object can be created for this class. These classes are created so that other classes can inherit them. Access control : A way to restrict access to classes, variables and methods. API : Application programming interface. API contains classes which a programmer can use to build applications and applets. Applets : A Java program embedded in an HTML document and runs in a web-browser. Argument : A value sent to a method when the method is called. Array : A list of values of the same type. All values in the array have the same name. They are accessed individually using an index/subscript ASCII : A standard set of values for representing text characters. Base class : A class from which another class inherits functionality. It is often called a superclass. Bit : The smallest piece of data that a computer understands. A bit can represent only two values, 0 or 1. Boolean : A value that can be either true of false. Branching : When an execution jumps forward or backward in a program. Browser : A program used for reading, displaying and interacting with objects in the World Wide Web. Byte : A data type which is 8 bits long. Bytecode : The machine independent output of the Java Compiler which goes as input to the Java Interpreter (The Java Virtual Machine). Casting : Converting one type of value to another. Character : A value used in text. Class : A collection of methods and variables that an object can have, or a template for building objects. .class file : A file containing the machine independent Java Byte code. Class variable : A variable allocated once per class. Class variables have global class scope and belong to the entire class instead of an instance. Comparison operators : >, =,