|
|
|
General
|
Applet
Applet is java program that can be embedded into HTML pages. Java applets runs on the java enables web browsers such as mozila and internet explorer.
View Rating |
|
|
General
|
Java package
Package is a mechanism for organizing a group of related files in the same directory. In a computer system, we organize files into
different directories according to their functionality, usability and category.
View Rating |
|
|
General
|
Inheritance
To know the concept of inheritance clearly you must have the idea of class and its features like methods, data members, access controls, constructors, keywords this, super etc.
View Rating |
|
|
General
|
break
Sometimes we use Jumping Statements in Java. Using for, while and do-while loops is not always the right idea to use because they are cumbersome to read. Using jumping statements like break and continue it is easier to jump out of loops to control other a
View Rating |
|
|
General
|
Operators
Operators are symbols that performs some operations on one or more then one operands. Once we declare and initialize variables, we can use operators to perform certain tasks like addition, subtraction etc.
View Rating |
|
|