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:
Please add more q&A
Hi, please add interview questions and answers for mulesoft technology. 2023-10-24, 3519👍, 3💬
Wha is the output from System.out.println("Hello"+null);?
Wha is the output from System.out.println("Hello"+nul l);?Hellonull 2023-08-24, 9696👍, 1💬
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-10-19, 17034👍, 5💬
Software testing vs. debugging
The difference between testing and debugging is... 2020-10-17, 2899👍, 1💬
Interview question
Have you ever worked without salary? 2020-02-20, 2977👍, 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, 11991👍, 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, 6005👍, 1💬
Popular Posts:
Should synchronization primitives be used on overrided bean methods? No. The EJB specification speci...
What is the difference between delegate and events? ã Actually events use delegates in bottom. But ...
Write an equivalent expression for x%8? x&7
.NET INTERVIEW QUESTIONS - How can you avoid deadlock in threading? A good and careful planning can ...
Can you tell me how to check whether a linked list is circular? Create two pointers, and set both to...