Java Programming
The Java programming language was released in 1995 as a core component of the Java platform of Sun Microsystems. It is a general-purpose, class-based, object-oriented language that is widely used in application software and web applications.
Total questions 21800
ID1191957189
removed Which bodies of water travels between the Indonesian islands of Java and Sumatra from Java Programming 26 May 2012 22:00
DingoBot (supervisor) [154]
automatically flagged Write a program to show the applet life cycle 26 May 2012 17:52
ID0456144844
wrote the first answer to Write a program to show the applet life cycle 26 May 2012 17:52
Bala1000 [0]
made this change to the answer of What is the import statement for java 26 May 2012 16:43
Popularity: 1 • Tools: Recategorize • Needs Answer
Polymorphism is an important principle in OOP; it would be hard to imagine OOP without it. Other important principles are...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
A Compiled language is one in which the source code is checked for syntactical correctness before the code is executed. the...
Popularity: 1 • Tools: Recategorize
Use "typedef" : both in C and C++.
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
A dangling reference is less problematic in Java, because the garbage collector will eventually delete any object that is...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
"Static" means stationary or at rest. the 4 functions are vestibular nerve, ampulla, cupula, and otoliths
Popularity: 1 • Tools: Recategorize
Compute means to calculate. What do you want to "compute", if you already know it is 2? If you want to show the...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Public, Protected, and Private specify what has access to a routine or variable. Public is the most generous, meaning that...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Actually, if you use the awk language with associative arrays there is no need to search for an element of an array: val["abc"]...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
include<stdio.h> #include<conio.h> void main() { FILE *fp; char nm[50]; int a,b,n,i; printf("\nInput file...
Popularity: 1 • Tools: Recategorize
Since arrays in C are zero based, the allowed subscript range is 0 - 99 (gives 100 values). Always remember to subtract 1 from...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Primitive data types are smaller in size and hence are efficient in processing and use the least bandwidth.
Popularity: 1 • Tools: Recategorize
Predefined methods refers to the methods in the Java API. the methods that are present in the Java Class libraries that we can...
Popularity: 1 • Tools: Recategorize
True.
Popularity: 1 • Tools: Recategorize
An Access Modifier is a key word in java that determines what level of access or visibility a particular java variable/method or...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
The basic rule is that the file name should match the name of the topmost public class in the .java file. The names are usually...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Actually, java does not support multiple inheritance. You can achieve partial multiple inheritance using interfaces but java is...
Popularity: 1 • Tools: Recategorize
Differences: Abstract class can also contain method definitions but an interface can contain only declarations All variables in...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Interfaces are classes that help us in implementing partial Multiple Inheritance in Java. It helps us in defining skeleton...
Popularity: 1 • Tools: Recategorize
delete can be used only with primitive types and arrays based on the types. operator delete cannot be used for classes because...
Popularity: 1 • Tools: Recategorize
JDBC ODBC Bridge Native API Partly Java Driver Net Protocol full Java driver are some types of jdbc drivers
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Decision statements are statements that are used for taking logical decisions. They contain a condition whose output is a boolean...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
You can also write desktop programs. You can use Java for almost anything.
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
The primitive data types in Java are: int: integer value from -232 to 232 float double long: integer value from -264 to 264...
Popularity: 1 • Tools: Recategorize
Yes. Because a variable of the more local scope is what is used instead of any other variables with that name, the data types of...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Multilevel Inheritance A Scenario where one class is inheriting/extending the bahavior of another class which in turn is...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
The computer doesn't directly understand the source code; it understands machine code. The compiler's role is to translate the...
Popularity: 1 • Tools: Recategorize
Compare each number with all the previous numbers. For example: boolean duplicateExists = false; int duplicateNumber; for...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
Popularity: 1 • Tools: Recategorize • Needs Answer
No. A String is handled as an Object. In many cases you can treat it as primitive (and forget that it is an object), but...
Popularity: 1 • Tools: Recategorize
Its C++ which introduces the concept of object oriented programming. If you could get any help from the answer then plz...
Popularity: 1 • Tools: Recategorize
Java is the complete object oriented Programming Language as every thing in java is an object,
Popularity: 1 • Tools: Recategorize
In Java, objects are constructed. Every time you make a new object, at least one constructor is invoked. Every class has a...
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
The Canvas class is the component upon which the Graphics class draws.
Popularity: 1 • Tools: Recategorize
Popularity: 1 • Tools: Recategorize • Needs Answer
In Java: ... String sampleString = "Hello!" System.out.println("Your string is: " + sampleString + " with a length of " +...
Popularity: 1 • Tools: Recategorize
It is a declaration of java class in method body which called "inner class"
Popularity: 1 • Tools: Recategorize