free-interviewtips.blogspot.com
Tech Interview Questions & Tips: JavaScript Interview Questions
http://free-interviewtips.blogspot.com/2006/11/javascript-interview-questions.html
Tech Interview Questions and Tips. Net ASP JSP PHP VB SQL Interview Questions. 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? What does isNaN function do? What is negative infinity?
free-interviewtips.blogspot.com
Tech Interview Questions & Tips: VB Interview Questions
http://free-interviewtips.blogspot.com/2006/11/vb-interview-questions.html
Tech Interview Questions and Tips. Net ASP JSP PHP VB SQL Interview Questions. 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. How do you use the Mouse OFF event? How do I call Windows Help files from a VB program? Can database ...
free-interviewtips.blogspot.com
Tech Interview Questions & Tips: C++ Interview Questions
http://free-interviewtips.blogspot.com/2006/11/c-interview-questions_25.html
Tech Interview Questions and Tips. Net ASP JSP PHP VB SQL Interview Questions. 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 can I declare a function that returns a pointer to a function of its own type? Explain term POLI...
free-interviewtips.blogspot.com
Tech Interview Questions & Tips: .Net And ASP.Net Questions
http://free-interviewtips.blogspot.com/2006/11/net-and-aspnet-questions.html
Tech Interview Questions and Tips. Net ASP JSP PHP VB SQL Interview Questions. Net And ASP.Net Questions. 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? How ASP .NET different from ASP? Resource Files: How to use the resource files, how to know which language to use? How do you vali...
itcompanydirectory.blogspot.com
IT Companies Directory: Coimbatore
http://itcompanydirectory.blogspot.com/2007/12/coimbatore.html
Hi friends. this is a list of IT Company details I have gathered from my friends and other sources. You can also submit your company details here.I will publish it. (adshibin@gmail.com). Ph: 0422 – 3058800, 3058804. E-Brahma Technologies Private Limited. PSG STEP-II, PSGR Block, 3rd Floor,. Avanashi Road, Coimbatore 641 004. Contact Person : Mr. Paramasivam, Managing Director. Telephone : 91 422 498430. Web: www.e-brahma.com. KG Information Systems Private Limited (KGISL). COIMBATORE - 641 035. E-mail : ...
webdeveloperscorner.blogspot.com
WebDeveloper's Corner: Creating a Delimited List in SQL Server without Cursors or Looping Using Coalesce or IsNull
http://webdeveloperscorner.blogspot.com/2008/03/creating-delimited-list-in-sql-server.html
Hi Friends. i am a web developer from india and here i would like to share my experience with you. Sometimes i may be wrong so help me to improve. Creating a Delimited List in SQL Server without Cursors or Looping Using Coalesce or IsNull. SELECT @MyList = Coalesce(@MyList ', ', ' ) field name. Subscribe to: Post Comments (Atom). Tech Interview Questions and Tips. Net Interview questions for Senior Software Engineers. How to Earn Money with Widget Bucks. Uarr; Grab this Headline Animator.
webdeveloperscorner.blogspot.com
WebDeveloper's Corner: Retrieve TOP and BOTTOM Rows using SQL Query
http://webdeveloperscorner.blogspot.com/2008/03/retrieve-top-and-bottom-rows-using-sql.html
Hi Friends. i am a web developer from india and here i would like to share my experience with you. Sometimes i may be wrong so help me to improve. Retrieve TOP and BOTTOM Rows using SQL Query. Here my table name is MT Sample Info. FROM MT Sample Info. WHERE sid IN (. SELECT TOP 1 MIN(sid) sid. FROM MT Sample Info. SELECT TOP 1 MAX(sid) sid. FROM MT Sample Info). Subscribe to: Post Comments (Atom). Tech Interview Questions and Tips. Net Interview questions for Senior Software Engineers.
webdeveloperscorner.blogspot.com
WebDeveloper's Corner: Return Null If A Value Is A Certain Value
http://webdeveloperscorner.blogspot.com/2008/03/return-null-if-value-is-certain-value.html
Hi Friends. i am a web developer from india and here i would like to share my experience with you. Sometimes i may be wrong so help me to improve. Return Null If A Value Is A Certain Value. Sometimes you may have to return a Null value if the value of your data is a certain value. Here. I have given some ways to do this. check it out. This should not really be used, I just added it here to demonstrate that you can in fact use it. SELECT REPLACE(@1,'D',NULL). SELECT CASE @1 WHEN 'D' THEN NULL ELSE @1 END.
free-interviewtips.blogspot.com
Tech Interview Questions & Tips: SQL Server Queries
http://free-interviewtips.blogspot.com/2006/11/sql-server-quries.html
Tech Interview Questions and Tips. Net ASP JSP PHP VB SQL Interview Questions. 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. Find the names, cities of employees who work for exactly one company. Where w.person name = e.person name). From works w where w...