Save info   Get password
Home Submit your blog Edit Account Rules RSS-Archive Contact


.Net Interview Questions
2008-03-08 05:27:00
     ASP.Net Questions Q. Explain the differences between Server-side and Client-side code? A. Server-side code executes on the server. Client-side code executes in      the context of the clients' browser. Q. What are some ways to manage state in an ASP.Net application? A. Session objects, Application objects, ViewState, cookies, hidden form fields. Q. What does the "EnableViewState"


Oracle Interview Questions and Answers : SQL
2008-03-07 02:22:00
  1. To see current user name     Sql> show user; 2. Change SQL prompt name      SQL> set sqlprompt “Manimara > “      Manimara >      Manimara > 3. Switch to DOS prompt      SQL> host 4. How do I eliminate the duplicate rows ?      SQL> delete from table_name where rowid not in (select max(rowid)      from  table group by  duplicate_values_field_name);      or      SQL>
Read more: Oracle

SQL Server 2005 -Interview Questions for Biginners
2008-03-06 02:47:00
• If I want to see what fields a table is made of, and what the sizes of the fields are, what option  do I have to look for? • What is a query? • A SQL query is typed in the _________ . • What is the purpose of the model database? • What is the purpose of the master database? • What is the purpose of the tempdb database? • What is the purpose of the USE command? • If you delete a table in the
Read more: SQL Server

AJAX Interview Questions
2008-02-15 02:44:00
What is AJAX ? Is the server or the client in control in AJAX? What is the XMLHttpRequest object? How do I get the XMLHttpRequest object? How do I abort the current XMLHttpRequest? What is the role of Ajax in enhancing user experience? How can I call a Java method from Javascript? Which browsers support AJAX? Is there any way that an AJAX object can get back a record set? What are the


SQL Server Interview Questions and Answers
2008-02-05 23:48:00
What is RDBMS? Relational Data Base Management Systems (RDBMS) are database management systems that maintain data records and indices in tables. Relationships may be created and maintained across and among the data and tables. In a relational database, relationships between data items are expressed by means of tables. Interdependencies among these tables are expressed by data values rather than
Read more: SQL , SQL Server

JSP interview questions
2008-02-02 03:19:00
Can you make use of a ServletOutputStream object from within a JSP page?Can a JSP page instantiate a serialized bean? Is it possible to share an HttpSession between a JSP and EJB? What happens when I change a value in the HttpSession from inside an EJB? What is the page directive is used to prevent a JSP page from automatically creating a session? How do you prevent the Creation of a Session in a
Read more: interview , questions

PHP Interview Questions
2008-01-17 04:59:00
1. What is the closing tag used by a PHP-driven web page? A. /> B. #> C. ?> D. .> 2. Which PHP conditional operator means the values are equal AND of the same data type? A. == B. || C. === D. ==? 3. Which of the following statements is true regarding variables in PHP (choose two)? A. Variable names in PHP are case sensitive. B. Variable names in PHP are not case sensitive. C. PHP variables


Tough ASP.NET interview questions
2008-01-17 04:36:00
Describe the difference between a Thread and a Process?What is a Windows Service and how does its lifecycle differ from a “standard” EXE? What is the maximum amount of memory any single process on Windows can address? Is this different than the maximum virtual memory for the system? How would this affect a system design? What is the difference between an EXE and a DLL? What is strong-typing
Read more: interview , questions , Tough

HR Interview Questions
2006-12-04 05:31:00
Tell me about yourself: - The most often asked question in interviews. You need to have a short statement prepared in your mind. Be careful that it does not sound rehearsed. Limit it to work-related items unless instructed otherwise. Talk about things you have done and jobs you have held that relate to the position you are interviewing for. Start with the item farthest back and work up to the


C# Interview questions
2006-11-26 01:01:00
General Questions: Does C# support multiple-inheritance? No. Who is a protected class-level variable available to? It is available to any sub-class (a class inheriting this class). Are private class-level variables inherited? Yes, but they are not accessible. Although they are not visible or accessible via the class interface, they are inherited. Describe the accessibility modifier “protected
Read more: questions

SQL Server Interview Questions
2006-11-25 23:43:00
What is normalization? - Well a relational database is basically composed of tables that contain related data. So the Process of organizing this data into tables is actually referred to as normalization. What is a Stored Procedure? - Its nothing but a set of T-SQL statements combined to perform a single task of several tasks. Its basically like a Macro so when you invoke the Stored procedure, you
Read more: SQL Server

ASP.Net Interview Questions
2006-11-25 04:27:00
1. Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process. inetinfo.exe is theMicrosoft IIS server running, handling ASP.NET requests among other things.When an ASP.NET request is received (usually a file with .aspx extension),the ISAPI filter aspnet_isapi.dll takes care of it by passing the request tothe actual worker process aspnet_wp.exe. 2. What’s


.Net And ASP.Net Questions
2006-11-18 23:52:00
Explain the .NET architecture. How many languages .NET is supporting now? - When .NET was introduced it came with several languages. VB.NET, C#, COBOL and Perl, etc. The site DotNetLanguages.Net says 44 languages are supported. How is .NET able to support multiple languages? - a language should comply with the Common Language Runtime standard to become a .NET language. In .NET, code is


JavaScript Interview Questions
2006-11-18 23:33:00
What’s relationship between JavaScript and ECMAScript? - ECMAScript is yet another name for JavaScript (other names include LiveScript). The current JavaScript that you see supported in browsers is ECMAScript revision 3. What are JavaScript types? - Number, String, Boolean, Function, Object, Null, Undefined. How do you convert numbers between different bases in JavaScript? - Use the parseInt()


.Net Questions
2006-11-18 04:16:00
Differences between DLL and EXE? Can an assembly have EXE? Can a DLL be changed to an EXE? Compare & contrast rich client (smart clients or Windows-based) & browser-based Web application Compare Client server application with n-Tier application Can a try block have more than one catch block? Can a try block have nested try blocks? How do you load an assembly at runtime? If I am writing in a


ASP, ADO Interview Questions
2006-11-13 23:41:00
How many objects are there in ASP? Which DLL file is needed to be registered for ASP? If you want to initialize a global variable for an application, which is the right place to declare it? (like form or some other file). What is diffrence between Server.transfer and Response.redirect. Is there any inbuilt paging(for example shoping cart. which will show next 10 records without refreshing) in ASP


VB Interview Questions
2006-11-06 23:38:00
How do you center a form? Can I send keystrokes to a DOS application? Convert an RGB value to a long, or a long to RGB. Implement smooth scrolling for either text, graphics or controls across a form. Implement some quick and easy encryption (can be something primitive). 4 different types of sorts: advantages and disadvantages. Compute CRC32 checksum, write a quick piece of code that accepts the


SQL Server Queries
2006-11-05 07:23:00
Consider the following relational schemas:employee (person_name, street, city)company (company_name, city)works (person_name, company_name, salary)manages (person_name, manager_name)Write the following queries in SQL :Find the names, cities of employees who work in at least one company.Display the names of all employees who work in at least one company and the city of the company in an ascending
Read more: SQL Server , Queries

Oracle Interview Questions
2006-11-02 23:12:00
OracleExplain the difference between a hot backup and a cold backup and the benefits associated with each You have just had to restore from backup and do not have any control files. How would you go about bringing up this database?How do you switch from an init.ora file to a spfile? Explain the difference between a data block, an extent and a segment.Give two examples of how you might determine
Read more: Oracle

C++ Interview Questions
2006-10-25 23:01:00
How do you decide which integer type to use? What should the 64-bit integer type on new, 64-bit machines be?What’s the best way to declare and define global variables? What does extern mean in a function declaration? What’s the auto keyword good for? I can’t seem to define a linked list node which contains a pointer to itself. How do I declare an array of N pointers to functions returning


Some Interview Questions
2006-09-16 02:22:00
1) Please tell me a little about yourself ? Be brief and keep it related to your work life.Give an overview not a life story.Don't talk about your wonderful dog! Again, keep it about your career 2) Why are you the best candidate for this job? Remember the skills and strengths you posses that are related to this position. 3) Can you tell me about your work experience? Remember your


Interview Tips
2006-09-16 02:09:00
Prepare Yourself and Calm Down Your big interview is coming up! I know, very scary situation. After all, if you don't make a good impression -- you won't land that job! There is no quick way to get rid of the anxiety of going to a job interview. The truth is, if the idea of going to an interview makes you nervous, when you get there -- you will also be nervous. However, if you prepare yourself


Aptitude Questions
2006-09-12 03:52:00
1.One of the following is my secret word:AIM DUE MOD OAT TIE.With the list in front of you, if I were to tell you any one of my secret word, then you would be able to tell me the number of vowels in my secret word.Which is my secret word? Ans.TIE 2.One of Mr. Horton,his wife,their son,and Mr. Horton's mother is a doctor and another is a lawyer. a)If the doctor is younger than the lawyer, then


Covering Letter
2008-03-18 23:48:00
A cover letter is used to introduce yourself and your resume.When you send a resume through email,the email content is your cover letter and the resume is attached. Below is an example of a cover letter. ----------------------------------------------------------------------- Dear Mr. Johnson, I am responding to a job posting from Monster.com regarding the Software Engineer position. I was very
Read more: Letter

Page 1 of 1 « < 1 > »
eXTReMe Tracker