Skip to main content

Top 10 Tips To Crack Interview For Programmers


Interview have always been a nerve reaching experience. Everybody gets the jitters when it comes to interviews.Especially when you are a fresher and going to give an interview as developer.

Relax! Don't Panic.Below are the best tips to help you land your dream job.
->Understanding the requirement
Read the job descreption carefully.
It is important to understand,what is expected from you and whether you fit in that given profile or not.
Analysing your personal strength and weakness alongside helps in deciding how well the job suits you and how to approach the interview.
->Know the employer
Study about the company where you are appearing for the interview
 Know their history
 their vision
 their objectives
so that you are able to answer the questions on it.
Research well on their future plans so that you are able to align with your job role and you can benifit them in the long term.
->Prepare well in advance
You must be prepared for the basic interview questions:-
Your Introduction
Your hobbies
Your interests
Why should they hire you...

Practice them well before your interview and try to make them interesting.
->Punctuality matters
You must reach the company on time for the interview.
It creates a bad impression if you are late for the interview.
Try to reach 10 minutes before the call time.
It is an important step towards creating a good first impression.
->Dress up well
‘Dress to impress’ is the key to create and leave a good impression.
Wear crisply ironed formals, clean shoes and your hair should be neat and tied up.
Be presentable but don’t be too glammed up.
->Always be confident
No matter how nervous you are, always look confident.
Nobody will want to hire a person who is nervous during the interview, as it creates an impression of inability of the candidate to handle workplace situations.
->Honesty counts
Be honest in your responses to interview questions.
Lying at any point may back fire in the future.
You are not supposed to know everything, so it is okay to accept it humbly.
It's better than giving a wrong response and creating a wrong impression as well.
->Update your CV
Your CV is the most important document which sells you to the firm.
Keep it updated by adding all your skills and experiences.
You must not fake information in your resume.
Your CV should not be too verbose and lengthy.
->Body language
You are noticed in every way and thus the postures and body language have a significant weightage during interviews.
Do not slouch.
Sit straight and make eye contacts during conversations.
Make it a two way conversation by asking questions and clarifying your doubts (if you have any).
->Get their opinion
As the interview is about to close, an
As the interview is about to close, ask the interviewer about how it went and what are the chances of being selected, But do not overdo it.
Asking for feedback gives a positive impression of the candidate’s keenness towards the job.


Now, here starts the Technical part of the interview

Well it all depends on your field,like:-
Front end Developer
Back end Developer
Full Stack Developer
Android Developer
IOS Developer
Data Scientist
and so on...
->If you are going for a front-end Developer profile
You should have a good hand on following languages:-
Html
CSS
Javascript
JQuery
Angular Js
And if you are a fresher, then atleast you should know the basic Questions...
->If you are going for a Back-end Developer profile
You should have a good hand on following languages:-
Php or Java or any server side language...
Databases like MySql, Sql Server, PostgreSQL, Oracle Database etc...
Javascript
JQuery
Angular Js
And if you are a fresher, then atleast you should know the basic Questions...
->If you are going for a Full Stack Developer profile
You Should Know The Following Languages:-
Html
CSS
Javascript
JQuery
Angular Js
Php or Java or any server side language...
Databases like MySql, Sql Server, PostgreSQL, Oracle Database etc...
Javascript
JQuery
Angular Js
Yes, You are right ... You should be aware with all the language listed above...
->If you are going for a Android Developer profile
You should have a good hand on following languages:-
XML
Java
Android
Many peoples have misconception that they need to know each and everything about XML and Android, which is not true.
The truth is You just need to know the basics of Xml and Java, Mainly You should focus on learning Android.
So that's all, I hope you love these tips... and will rock in your interview.

Moreover if you want to read some Interview Questions related to Programming languages above, I Created an App Called InterQue,where i added hundreds of Questions of these Languages that help you to crack your interview.
Screenshot of InterQue Screenshot of InterQue

Comments

Post a Comment

Popular posts from this blog

Cpp Question : Calculating Price of Eggs

Diary Farm sells organic brown eggs to local customers. They charge Rs 22.50 for a dozen for eggs, or rs 2.10 for individual effs that are not part of a dozen. Write a C++ Program a user for the number of eggs in the order and the displays the amount owned with a full explanation. For Example, typical output might be " You ordered 27 eggs. that's 2 dozens at rs 2.50 per dozen and 3 loose eggs at rs 2.10 each for a total of rs 51.30". The program must iterate until zero is entered for the number of eggs. Code: #include<iostream> using namespace std; int main(void) { int n; float price=0; int r=0,q; char ch; do { cout<<"\nEnter Numbe of eggs OR zero (0) to exit :"; cin>>n; if(n<0) { cout<<"Incorect Value"; } else if(n==0) { exit(0); } else { q=n/12; price+=q*22.50; r=n%12; ...

XML : AJAX Tutorial For Beginners

Why Study AJAX? If you want to learn : • Update a web page without reloading the page • Request data from a server - after the page has loaded • Receive data from a server - after the page has loaded • Send data to a server - in the background What is AJAX? AJAX stands for Asynchronous JavaScript And XML. AJAX is not a programming Language. Ajax just uses a combination of : A browser built-in XMLHttpRequest object (to request data from a web server) JavaScript and HTML DOM (to display or use the data) This is how AJAX works:- <!DOCTYPE html> <html> <head> <script> function tryAjax() { var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { document.getElementById("content").innerHTML = this...

XML Basics For Beginners in Short

Why Study XML? It is important to have a good understanding of XML. What is XML? Xml stands for extensible markup language. Xml designed to store and transport data. XML doesn’t do anything. It is just information wrapped in tags. Difference between XML and HTML: XML was designed to carry data – with focus on what data is and HTML was designed to display data with focus on how data looks. XML tags are not predefined like HTML tags are: XML language has no predefined tags. With XML, the author must define both the tags and the document structure. XML Simplifies Things like:- Data Sharing:- Exchanging data between incompatible systems is a time-consuming task for web developers. Large amounts of data must be converted, and incompatible data is often lost. XM...