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 modifiers may be used with a top-level class?
What modifiers may be used with a top-level class? A top-level class may be public, abstract, or final. 2013-01-25, 2131👍, 0💬
What restrictions are placed on method overloading?
What restrictions are placed on method overloading? Two methods may not have the same name and argument list but different return types. 2012-12-19, 2130👍, 0💬
Do I need to import java.lang package any time? Why ?
Do I need to import java.lang package any time? Why ? No. It is by default loaded internally by the JVM. 2013-05-09, 2127👍, 0💬
What is JIT?
What is JIT? JIT stands for Just In Time compiler. It compiles java byte code to native code. 2013-03-13, 2126👍, 0💬
Can there be an abstract class with no abstract methods in it?
Can there be an abstract class with no abstract methods in it? yes. 2013-02-01, 2125👍, 0💬
What is the purpose of the File class?
What is the purpose of the File class? The File class is used to create objects that provide access to the files and directories of a local file system. 2012-12-12, 2124👍, 0💬
Popular Posts:
What’ is the sequence in which ASP.NET events are processed ? Following is the sequence in which the...
How do we get the current culture of the environment in windows and ASP.NET? “CultureInfo.CurrentCul. ..
What is the value of this expression? +1-2*3/4 -0.5
How do we configure “WebGarden”? “Web garden” can be configured by using process model settings in...
How do you override a defined macro? You can use the #undef preprocessor directive to undefine (over...