Skip to main content

Tips to prepare for an interview …

Off late, quite a few people are asking me about interview tips!! Though I don’t have any best prescription to follow before attending an interview, I thought would give it a try.

What I used to do when I was attending interviews?

I used to maintain a diary where-in I would take notes of imperative points while studying. Also after attending an interview I used to scribble down all those questions which were asked irrespective of whether I already know the answer or not. Later I would sit down and find answers for those questions which I wasn’t aware of.

So this diary would contain all important points of a subject and FAQ of that subject (with answers). Once I get an interview call, the first thing I would do is to run through that diary completely. It really worked for me, because I noticed that questions gets repeated after few interviews

The next thing I used to do is to collect FAQs from the internet and go through it WITHOUT fail. To my knowledge, for initial level of screening, interviewers in majority of the company make use of these FAQs only.

There are few companies / consultant who as part of their initial screening process ask us to take up online exams ( Brainbench.com is one popular site ). So I used to practice taking online exams whenever I find time. FYI, till few years back Brainbench exams where free. Now it isn’t.

Apart from this, if you know of any better methods do let me also know :)

Freshers:

If you are a fresher concentrate more on Puzzles, Aptitude questions, computer language which you have studied on your academics and be ready to explain in detail the projects you did as part of your course.

For Experienced:

Irrespective of what technology one is working on, they need to be spellbound more on these topics:

  • Object Oriented Programming ---- Common for both .NET and JAVA. But not limited to these 2 alone. For example, now OOPs based programming can be done in Flash too. Yes, Macromedia Flash MX has inbuilt support for OOP. Also, Macromedia Flex has OOPs support built into it.


  • Good knowledge of Databases Concepts ---- No matter what front-end one use, mostly from day one of their career they would be using one database or other. So it’s quite normal to expect good competency in database when experience grows.
  • Performance (application, database) ---- Self-explanatory. This is how one can find the difference between a fresher and a skilled programmer.
  • Design patterns ---- This comes into picture when you start applying for Architect position.


Importance of Communication:

Communication is really very important. No second thought about it.

I know of many people who have not been offered a job because of “lack of decent communication”. I really don’t buy this point unless or until that person has applied for a Module Lead or above position.

Communication is more important when a person is required to converse with the client (or) Give directions to their team mates etc., So if a person is just applying for a software engineer position I guess one need not give too much of importance to communication as they can improve it after joining the organization as well!!

Better to avoid:

Irrespective of whether you are a fresher or skilled aspirant mention that you have done certifications (MCAD, MCSD, MCP, OCP etc.,) ONLY if you have confidence in that subject. If you lack self-confidence but you have completed those with DUMPS it’s better to avoid mentioning about it in your resume. Why? Because with few questions one can easily find out whether you have real experience on that subject or not.

If you don’t know the answer for a question just accept the fact that you are not aware of it. No harm in it. Interviewers normally get goaded when a candidate starts to beat around the bush. By giving wrong answers you start exhibiting that you don’t have clear idea about that answered topic as well.

This post is by no means an exhaustive list of things to know and remember; it is just a beginning step for you to search more in the web :) But I hope this would help you get started!

All the best for your Job Hunt …

Updated on 07 October 2006: The part II of this series is here

Technorati tags: , ,

Comments

Ramya Sridharan said…
This comment has been removed by a blog administrator.
Lijin said…
Im Lijin and a beginner in the field of programming.
Today I just happened to go thru ur blog. Its very good and friendly.

these tips are very much helpfull to all

Hav a great day sir.
Srini said…
"If you don’t know the answer for a question just accept the fact that you are not aware of it"

Now i understood how I managed to get a job, and I've heard it straight from the Horse's mouth :)) Nice post Vadivel.
Anonymous said…
Hello sir ..

i m Prashant working on STRUTS.
Actually i was looking for some interview tips on java when i found ur blog this is really an excellent blog helping us to nurture our carrer.

i m expecting more blogs of such standard from u.

Have a nice day
bye
Anonymous said…
Hi Vadivel,

Sorry 4 d very delayed comment.. Nice post..

These things wil prove to b very useful to lotta ppl :)

Am really proud to have been interviewed by u..

I still remember every minute of it.. I was jus goin thru Yashwant Kanetkar outside d interview hall at DBS center..

They called me in 4 interview.. Ur smile, d handshake n d warm welcome made me be at total ease.. felt very comfortable.. I have to say dat, once a person feel comfortable, d mind starts workin calmly, efficiently.. Experience :)

Result - Workin in VERIZON..

HEARTY THANKS TO Mr.VADIVEL!!!

U r jus gr8..
Anonymous said…
I recently stumbled across this site which has free online MCAD and MCSD practice exams:

They're exam cram style but 100% free..

Free online MCAD and MCSD practice exams

Regards
Dave

Popular posts from this blog

Registry manipulation from SQL

Registry Manupulation from SQL Server is pretty easy. There are 4 extended stored procedure in SQL Server 2000 for the purpose of manupulating the server registry. They are: 1) xp_regwrite 2) xp_regread 3) xp_regdeletekey 4) xp_regdeletevalue Let us see each one of them in detail! About xp_regwrite This extended stored procedure helps us to create data item in the (server’s) registry and we could also create a new key. Usage: We must specify the root key with the @rootkey parameter and an individual key with the @key parameter. Please note that if the key doesn’t exist (without any warnnig) it would be created in the registry. The @value_name parameter designates the data item and the @type the type of the data item. Valid data item types include REG_SZ and REG_DWORD . The last parameter is the @value parameter, which assigns a value to the data item. Let us now see an example which would add a new key called " TestKey ", and a new data item under it called TestKeyValue :

Screen scraping using XmlHttp and Vbscript ...

I wrote a small program for screen scraping any sites using XmlHttp object and VBScript. I know I haven't done any rocket science :) still I thought of sharing the code with you all. XmlHttp -- E x tensible M arkup L anguage H ypertext T ransfer P rotocol An advantage is that - the XmlHttp object queries the server and retrieve the latest information without reloading the page. Source code: < html > < head > < script language ="vbscript"> Dim objXmlHttp Set objXmlHttp = CreateObject("Msxml2.XMLHttp") Function ScreenScrapping() URL == "UR site URL comes here" objXmlHttp.Open "POST", url, False objXmlHttp.onreadystatechange = getref("HandleStateChange") objXmlHttp.Send End Function Function HandleStateChange() If (ObjXmlHttp.readyState = 4) Then msgbox "Screenscrapping completed .." divShowContent.innerHtml = objXmlHttp.responseText End If End Function </ script > < head > < body > &l

Script table as - ALTER TO is greyed out - SQL SERVER

One of my office colleague recently asked me why we are not able to generate ALTER Table script from SSMS. If we right click on the table and choose "Script Table As"  ALTER To option would be disabled or Greyed out. Is it a bug? No it isn't a bug. ALTER To is there to be used for generating modified script of Stored Procedure, Functions, Views, Triggers etc., and NOT for Tables. For generating ALTER Table script there is an work around. Right click on the table, choose "Modify" and enter into the design mode. Make what ever changes you want to make and WITHOUT saving it right click anywhere on the top half of the window (above Column properties) and choose "Generate Change Script". Please be advised that SQL Server would drop actually create a new table with modifications, move the data from the old table into it and then drop the old table. Sounds simple but assume you have a very large table for which you want to do this! Then it woul