Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the purpose of the Runtime class?
What is the purpose of the Runtime class? The purpose of the Runtime class is to provide access to the Java runtime system. 2012-10-22, 2279👍, 0💬
What is the % operator?
What is the % operator? It is referred to as the modulo or remainder operator. It returns the remainder of dividing the first operand by the second operand. 2012-11-09, 2278👍, 0💬
Is sizeof a keyword?
Is sizeof a keyword? The sizeof operator is not a keyword in Java. 2013-04-11, 2276👍, 0💬
Explain the Inheritance principle.
Explain the Inheritance principle. Inheritance is the process by which one object acquires the properties of another object. 2013-03-01, 2274👍, 0💬
How can the Checkbox class be used to create a radio button?
How can the Checkbox class be used to create a radio button? By associating Checkbox objects with a CheckboxGroup. 2012-12-18, 2271👍, 0💬
Which Component subclass is used for drawing and painting?
Which Component subclass is used for drawing and painting? Canvas 2013-01-30, 2269👍, 0💬
What interface is extended by AWT event listeners?
What interface is extended by AWT event listeners? All AWT event listeners extend the java.util.EventListener interface. 2013-01-14, 2268👍, 0💬
Name three subclasses of the Component class.
Name three subclasses of the Component class. Box.Filler, Button, Canvas, Checkbox, Choice, Container, Label, List, Scrollbar, or TextComponent 2012-10-19, 2267👍, 0💬
Describe the principles of OOPS
Describe the principles of OOPS There are three main principals of oops which are called Polymorphism, Inheritance and Encapsulation. 2013-02-28, 2266👍, 0💬
What is the Java Virtual Machine?
What is the Java Virtual Machine? The Java Virtual Machine is a software that can be ported onto various hardware-based platforms. 2013-02-20, 2264👍, 0💬
Which package is always imported by default?
Which package is always imported by default? The java.lang package is always imported by default. 2013-01-09, 2264👍, 0💬
Popular Posts:
Write out a function that prints out all the permutations of a string. For example, abc would give y...
What Are the Parameter Modes Supported by PL/SQL? - Oracle DBA FAQ - Creating Your Own PL/SQL Proced...
How Do I Run JUnit Tests from Command Window? To run JUnit tests from a command window, you need to ...
.NET INTERVIEW QUESTIONS - Where do you specify session state mode in ASP.NET ? The following code e...
Jack developed a program by using a Map container to hold key/value pairs. He wanted to make a chang...