Skip to main content

Interviewer category



I attended a couple of interviews during my 5+ year career and  and  the experience of my friends circle, especially for getting the first opportunity in the UK and came across various types of interviews. Based on that limited knowledge I can categorize the interviewers into 4 categories

1-     Technically well sounded interviewer
2-     Interviewer who has taken a list of questions and asking only those questions
3-   Interviewer have no idea about technology they are recruiting for but know about the kind of business the company is doing
4-     An interviewer who speaks more about the problems they faced with during the ex- colleagues

Category-1 technically well sounded interviewer

I came across 25-30%of technically sounded interviewers. They had clear idea about what they are recruiting for. Manipulating such an interviewer is a big issue. For all interviews basic thing we need to keep is try to be honest for 100% . But in front of a technically sounded person and who know what he is doing try to be 150% honest. If you try to fool him you won't be getting the job.

Category2-interviewer who has taken a list of questions and asking only those questions

I came across 30-40% interviewers this kind. They usually refer some commonly asked online interview questions and make them as interview. Manipulating them is very much easy. Prepare the interview with related technology Q&a. If you don't get time to prepare all at least go through commonly asked interview questions.

If you go through 2,3 interview and you prepare every interview with commonly asked questions, getting a job in 3 interviews is much guaranteed.

Category 3- interviewer have no idea about technology they are recruiting for but knows about the kind of business the company is doing

I came across 20-25% this kind of interviewer during my 5 years career.
People who might become managers or development head with different kind of skill set and very Less knowledge about the technology they are recruiting for.
They will ask very limited technical questions but ask more business problems.
Like if I have to access a web service from third party how you will design the system. Tackling this kind of interviewers is difficult job unless you are very good knowledge about the work you are doing. This kind of people less worried about the technical questions, but might be they will ask one or two technical questions. But getting an offer from this kind of people is very difficult if you are a starter or a graduate job finder.

Category 4- interviewer who speak more about the problems they faced with the ex- colleagues

I came across 10-15 % interviewers of this kind.they won't be satisfied with any kind of answers. But there are good opportunity to get job also from this people. Can tell an example might be they are not satisfied with 14 previous interviews and if you performed bit better than previous 14 this people might offer you the Job. This kind of interviewer will give you very less opportunity to talk. They will only blame about what went wrong when previous employee did the job. They only talk about the problems they faced during last 6-10 months. They don't want to listen to the candidate skills or passion. My advice is if you get an offer from such kind of people stay away from that. Because they will not be happy with you after 6 months of job. They always want more. Like if the system is not working after 5.30 pm this people want you to work and finish the job, but they won't be ready to pay any kind of compensation. If your work is staring at 9 am you need to be office at 9 am.

Like employers have opportunity to select the candidates, candidates are also need to decide which employee they want to work for. Because if you have a real passion for your work some categories of people will make you as a person who hates jobs

I this 4 category if you get in first category or third category you will really get some opportunity to enjoy the work. 2nd category is in tolerable range but stay away from 4th category.

At the mean time if you are an interviewer please identify which group you belong.

Comments

Popular posts from this blog

Compiled Query- Improve the performance of Linq to Entity Query

Most of the small or medium IT firms are using the Entity framework for the Data Access layer (DAL). If we write a complex linq to Entity queries performance will always be an issue. But with the Compiled Query Performance can be improved. This below definitions are from MSDN and more details can be found on the MSDN Link that is at the end of this post           When you have an application that executes structurally similar queries many times in the Entity Framework, you can frequently increase performance by compiling the query one time and executing it several times with different parameters. For example, an application might have to retrieve all the QuoteRevision for a particular quotelineStatus, the quotelinestatus is specified at runtime. LINQ to Entities supports using compiled queries for this purpose.               The  compiled query class provides compilation and caching of queries for reuse . Co...

Sql Server Internals - Named Pipes

Named pipes enables clients applications to request a reliable and two way connection between the client application and Sql Server, across a network. A named pipe has a name which follows the UNC naming convention : \\Server\pipe\name The default names pipe for SQL server is :                 \\Server\pipe\sql\query A named instance would have a named pipe of                \\server\pipe\MSSQL$instancename\sql\query Early versions of SQL Server only provided Named Pipes. Named Pipes also allows for impersonation of a clients credentials. The feature is used by SQL server when using Linked Servers. The clients logon credentials are passed across to the Linked Server for authentication. Named Pipes can operate over TCP/IP, NETBEUI or IPX as it indirectly relies on the Common Internet Files Sytems

How to add a stored procedure in Entity Framework

Step1- Open the . edmx file Step2- Right click in . edmx file and select Update Model from Database Step3- Select Add tab, select Stored Procedures and select the procedure you want to add and click finish as shown in below figure a Step4- Build the Entity Project to make sure nothing is broke Step5- Right click on . edmx file and  select Model Browser Step6- Model Browser Popup will appear as  below figure. Click on the Strored Procedures in PricingToolModel . Stroe and click the newly added SP (it will appear here) Step7- The Add Function Import screen will appear Based on the return we can set up. If you are returning a multiple column Click on the Get Column Information First, then click the new Complex Type. After that you can  see the Return of Collection will select the Complex and a complex type is generated by EF If its returning scalar you can select which return type like int , string etc... If its return  entitty ...