Interview Questions

Q:

what is ratio

Answer ratio means how much part of one thing with respect of other thing.
like if we have 12 pens & 6 boys are there then the ratio is 2:1
Report Error

View answer Workspace Report Error Discuss

0 1186
Q:

Describe your ideal job?

Answer

Describe your ideal job?


You should use this question to relate to the post you applied and give them the feel that this is close to your ideal job. So align your wonderful ideal job reasons to the responsibilities of the job posting. 


This is a question that you can use to add some humor or do a icebreaker like just joking that your ideal job is to work in a space station or would like to work in Hollywood but after a quick laugh give a realistic answer like my ideal job is where i get more responsibilities, enhance my skills and grow, and of-course you can add saying you would like to be part of a team where work is fun. If you want to go further, You might add at the end you heard good things about the work environment in the interviewing company.

Report Error

View answer Workspace Report Error Discuss

Subject: Common Interview

1 1664
Q:

Why are you looking for a New job?

Answer

Why Are You Looking For A New Job?

Purpose - This question is asked to get some insights into your personality and your relationship with your last job, colleagues and employer. So you should be careful while answering this question.

1. Never bad-mouth your former employers.
Why? It is very simple as the interviewer will envision that you will bad-mouth them when you decide to leave, and nobody wants bad rumors about themselves or their company.

2. Never bad-mouth your previous co-workers.
Why? This world is too small, your co-workers could be a friend, relative of the interviewer.

3. Never bad-mouth about the responsibilities and tasks you performed at your previous job.
Why? Thinking that the new employer would give you great responsibilities and tasks and if you give a hate speech on the previous job responsibilities and activities and to your surprise if your interviewer is thinking about similar tasks for this position, you have already given a reason to quit the new job which you have not yet got. So guess, the chances of you getting the job is Nil.

Keep the answer short and try not to disclose too much. A straight answer is best and as stated above avoid negative statements about yourself, your work, or your ability to get along with others.

E.g.
My organization was forced to downsize.

Our department was eliminated due to corporate restructuring.

I am looking for a bigger challenge and to grow my career.

I am relocating to this area due to family ( Marriage, Kids Education etc...)

I received degree and want to utilize my new skills in this new position.

I am interested in a job with more responsibility and challenges.

I am seeking a position with a stable company with room for growth and opportunity for advancement.

Report Error

View answer Workspace Report Error Discuss

4 2338
Q:

Tell us about a time when you missed a significant deadline

Answer

Tell us about a time when you missed a deadline.


(or)


Let's discuss a time when you missed a significant deadline.


If you answer something like "You never missed a deadline". Most interviewers will immediately conclude you are not experienced and may also feel you are lying. 


Approach - It is absolutely necessary to accept that you have missed a deadline and give reasons how you resolved and what you learned from it. This will demonstrate your experience.


You could say in one of the first projects earlier in your career you missed an important deadline and made the boss very upset. It was a great learning experience and after doing some introspection, you realized, you could have done better planning, prioritization and communication. Now, you use special tools, processes and methods to address these issues. Now your team, colleagues and management are always up to date so no surprises arise on meeting deadlines. 


Below are few things you may emphasize on in your response...


Effective planning


Procedural Improvements


Better Prioritization


Open communication


Better Status reporting

Report Error

View answer Workspace Report Error Discuss

7 10389
Q:

How is final different from finally and finalize()?

Answer final is a modifier which can be applied to a class or a method or a variable. final class can't be inherited, final method can't be overridden and final variable can't be changed.

finally is an exception handling code section which gets executed whether an exception is raised or not by the try block code segment.

finalize() is a method of Object class which will be executed by the JVM just before garbage collecting object to give a final chance for resource releasing activity.
Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1791
Q:

Can you give few examples of final classes defined in Java API?

Answer

java.lang.String,  java.lang.Math are final classes.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

6 8052
Q:

When will you define a method as static?

Answer When a method needs to be accessed even before the creation of the object of the class then we should declare the method as static.
Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 3557
Q:

What are the restriction imposed on a static method or a static block of code?

Answer A static method should not refer to instance variables without creating an instance and cannot use "this" operator to refer the instance.
Report Error

View answer Workspace Report Error Discuss

Subject: Java

5 6328