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:
Which TextComponent method is used to set a TextComponent to the read-only state?
Which TextComponent method is used to set a TextComponent to the read-only state? setEditable() 2012-11-28, 2700👍, 0💬
What is the purpose of the System class?
What is the purpose of the System class? The purpose of the System class is to provide access to system resources. 2012-11-27, 2311👍, 0💬
Does a class inherit the constructors of its superclass?
Does a class inherit the constructors of its superclass? A class does not inherit constructors from any of its super classes. 2012-11-26, 2365👍, 0💬
What is the Map interface?
What is the Map interface? The Map interface replaces the JDK 1.1 Dictionary class and is used associate keys with values. 2012-11-26, 2251👍, 0💬
What is the SimpleTimeZone class?
What is the SimpleTimeZone class? The SimpleTimeZone class provides support for a Gregorian calendar. 2012-11-16, 2380👍, 0💬
How is rounding performed under integer division?
How is rounding performed under integer division? The fractional part of the result is truncated. This is known as rounding toward zero. 2012-11-14, 2807👍, 0💬
Is the ternary operator written x : y ? z or x ? y : z ?
Is the ternary operator written x : y ? z or x ? y : z ? It is written x ? y : z. 2012-11-13, 2573👍, 0💬
Which class is extended by all other classes?
Which class is extended by all other classes? The Object class is extended by all other classes. 2012-11-12, 2319👍, 0💬
What is the difference between a Window and a Frame?
What is the difference between a Window and a Frame? The Frame class extends Window to define a main application window that can have a menu bar. 2012-11-09, 2324👍, 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, 2327👍, 0💬
What is the Dictionary class?
What is the Dictionary class? The Dictionary class provides the capability to store key-value pairs. 2012-11-08, 2382👍, 0💬
What is the difference between the String and StringBuffer classes?
What is the difference between the String and StringBuffer classes? String objects are constants. StringBuffer objects are not. 2012-11-06, 2409👍, 0💬
Can a Byte object be cast to a double value?
Can a Byte object be cast to a double value? No, an object cannot be cast to a primitive value. 2012-11-05, 2556👍, 0💬
Popular Posts:
Are risk constant through out the project ? * Never say that risk is high through out the project. R...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
How to create a thread in a program? You have two ways to do so. First, making your class "extends" ...
What Is URI? URI (Uniform Resource Identifier) is a superset of URL. URI provides a simple and exten...
How to set a cookie with the contents of a textbox ? Values stored in cookies may not have semicolon...