Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How do you locate the first X in a string txt?
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf('X'); D) txt.countTo('X'); 2022-01-27, 13927👍, 4💬
Software testing vs. debugging
The difference between testing and debugging is... 2020-10-17, 1025👍, 1💬
Please add more q&A
Hi, please add interview questions and answers for mulesoft technology. 2020-07-22, 1225👍, 0💬
Interview question
Have you ever worked without salary? 2020-02-20, 1273👍, 0💬
How does ASP.NET maintain state in between subsequent request
How does ASP.NET maintain state in between subsequent request ? Refer caching chapter. 2019-02-05, 9938👍, 1💬
💬 2019-02-05 M.S.: There are different state management techniques Cookies,viewstate,hidden field
Is JSP technology extensible?
Is JSP technology extensible? YES. JSP technology is extensible through the development of custom actions, or tags, which are encapsulated in tag libraries. 2019-01-07, 3968👍, 1💬
How do we assign page specific attributes
How do we assign page specific attributes ? Page attributes are specified using the @Page directive. 2018-01-23, 7640👍, 1💬
Popular Posts:
If we have multiple AFTER Triggers on table how can we define the sequence of the triggers ? If a ta...
How can I implement a thread-safe JSP page? You can make your JSPs thread-safe by having them implem...
Is Session_End event supported in all session modes ? Session_End event occurs only in “Inproc mode”...
Write out a function that prints out all the permutations of a string. For example, abc would give y...
Does it matter in what order catch statements for FileNotFoundException and IOExceptipon are written...