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 tool is used to manage the GAC?
What tool is used to manage the GAC? What tool is used to manage the GAC? * GacMgr.exe * GacSvr32.exe * GacUtil.exe * RegSvr.exe GacUtil.exe 2014-03-11, 2729👍, 0💬
State True or False: A single .NET dll can contain unlimited classes: * True or * False?
State True or False: A single .NET dll can contain unlimited classes: * True or * False? True 2014-03-12, 2640👍, 0💬
Where are shared assemblies stored?
Where are shared assemblies stored? Global assembly cache. 2014-12-19, 2624👍, 0💬
How can you create a strong name for a .NET assembly?
How can you create a strong name for a .NET assembly? With the help of Strong Name tool (sn.exe). 2014-12-22, 2547👍, 0💬
Popular Posts:
If we have the following in a Java code: String s="abc"; String s2="abc"; Then what will be output o...
How can I check for HTML errors? HTML validators check HTML documents against a formal definition of...
What will be printed as the resultof the operation below: int x; int modifyvalue() { return(x+=10); ...
Can a variable be both const and volatile? Yes. The const modifier means that this code cannot chang...
Which are the various programming approaches for WCF?