Question & Additional Information
 
Father's age is three years more than three times the son's age. After three years, father's age will be ten years more than twice the son's age. What is the father's present age.
Add to My IQ
 

 | 
Inappropriate
Answer Title
Answer
33 years
Question Tag Title
Tags
Question Asked At Title
Asked At
None
Question Job Title
Job Titles


Check out our newest job listings!

Post a Job! $49 for 60 days



Your Name:
Add your comment text
 
Related Questions
Related Questions
Flag this interview question as inappropriate Inappropriate
See Answer
I do have a wide experience in working with computers because I have worked with computers and automated systems for almost many years.It is indeed fun and easy to work on computerised systems as it saves time and money.It is easy to work on.
Create Date
:
Tuesday, March 18, 2008
Tags
:
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer
Binary Exponential Backoff Algorithm was chosen to dynamically adapt to the number of stations trying to send. If the randomization interval for all collision was 1023 slots, the chance of two stations colliding for a second time  would be negligible, but the average wait after a collision would be hundreds of slot times, introducing significant delay. On the other hand, if each station always delayed for either 0 or 1 slot, then if 100 stations ever tried to send at once, they would collide over and over until 99 of them picked 1 and the remaining station picked 0. This may take years. But having the randomization interval grow exponentially as more and more consecutive collisions occur, the algorithm ensures a low delay when only a few stations collide but also ensures that the collision is resolved in a reasonable interval when many stations collide. Truncating the backoff at 1023 keeps the bound from growing too large.
Create Date
:
Monday, January 07, 2008
Tags
:
None
Asked At
:
None
Job Positions
:
None
Click here to improve the Interview Question, Answer and other fields.
Comments (1) :
1.
hackone
Tuesday, October 28, 2008 11:54 AM
Binary Exponential Backoff Algorithm was chosen to dynamically adapt to the number of stations trying to send. If the randomization interval for all collision was 1023 slots, the chance of two stations colliding for a second time  would be negligible, but the average wait after a collision would be hundreds of slot times, introducing significant delay. On the other hand, if each station always delayed for either 0 or 1 slot, then if 100 stations ever tried to send at once, they would collide over and over until 99 of them picked 1 and the remaining station picked 0. This may take years. But having the randomization interval grow exponentially as more and more consecutive collisions occur, the algorithm ensures a low delay when only a few stations collide but also ensures that the collision is resolved in a reasonable interval when many stations collide. Truncating the backoff at 1023 keeps the bound from growing too large.
Flag this interview question as inappropriate Inappropriate
See Answer
Start with the present and tell why you are well qualified for the position. Remember that the key to all successful interviewing is to match your qualifications to what the interviewer is looking for. In other words you must sell what the buyer is buying. This is the single most important strategy in job hunting.

So, before you answer this or any question it's imperative that you try to uncover your interviewer's greatest need, want, problem or goal.
To do so, make you take these two steps:
Do all the homework you can before the hr interview to uncover this person's wants and needs (not the generalized needs of the industry or company)

As early as you can in the interview, ask for a more complete description of what the position entails. You might say: "I have a number of accomplishments I'd like to tell you about, but I want to make the best use of our time together and talk directly to your needs. To help me do, that, could you tell me more about the most important priorities of this position? All I know is what I (heard from the recruiter, read in the classified ad, etc.)"

Then, ALWAYS follow-up with a second and possibly, third question, to draw out his needs even more. Surprisingly, it's usually this second or third question that unearths what the interviewer is most looking for.

You might ask simply, "And in addition to that?..." or, "Is there anything else you see as essential to success in this position?:

This process will not feel easy or natural at first, because it is easier simply to answer questions, but only if you uncover the employer's wants and needs will your answers make the most sense. Practice asking these key questions before giving your answers, the process will feel more natural and you will be light years ahead of the other job candidates you're competing with.

After uncovering what the employer is looking for, describe why the needs of this job bear striking parallels to tasks you've succeeded at before. Be sure to illustrate with specific examples of your responsibilities and especially your achievements, all of which are geared to present yourself as a perfect match for the needs he has just described.
Create Date
:
Monday, October 01, 2007
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (3) :
1.
Shantanu
Wednesday, September 17, 2008 10:46 PM
Hi,
I am Shantanu and i am a web designer.
Recently i have launched a website.
please see this:
http://www.itportalindia.com
2.
priya
Thursday, August 14, 2008 4:00 AM
introduce ourself
Flag this interview question as inappropriate Inappropriate
See Answer
In n-tier architecture the entire application is divided in several pieces. These pieces can be logical or physical. Each piece performs a specific task such as displaying user interface or data access. There can be any number of tiers or layers of such pieces. Hence, the name n-tier (Note that many times the terms tier and layer are used interchangeably). However, most commonly applications have 3 distinct tiers or layers. They are:
  • Presentation Layer
  • Business Logic Layer
  • Data Access Layer
As you can guess, presentation layer is nothing but a piece of software that deals with user interface of your application. Displaying data to the end user and allow them to interface with it is the core functionality of this layer.

In most of the cases the data entered by the end user needs some kind of validation or further processing. This is the responsibility of Business Logic Layer.

Finally, your application data needs to be stored and retrieved in some data store (RDBMS, XML etc.). This task is handled by Data Access Layer.

In short, the process works like this:

  • User requests for some application data.
  • The data access layer retrieves the data and is forwarded to the presentation layer via business logic layer. Sometimes data access layer gives this data directly to presentation layer.
  • Presentation layer receives the data to be displayed via business logic layer.
  • The user changes the data and initiates the appropriate action (such as insert, or update).
  • The business logic layer validates the data submitted by the user.
  • If the data is valid it is handed over to data access layer for updating into the database.
Advantages of N-Tier ArchitectureAt first glance this division of tasks may seem to be unnecessary. However, it gives following benefits:
  • The applications gets divided in logically isolated pieces reducing tight coupling between the UI, business processes and database.
  • Change in the underlying database and data access methods do not have any effect on the presentation layer or client application.
  • Client application no longer has SQL statements embedded in it. This makes it de-coupled from rest of the application.
  • Table and column names can be effectively eliminated from the client-side code.
  • The client application is unaware from where data comes (location transparency).
  • It becomes easier to modify or extend your application, without breaking or recompiling the client-side code.
The downside of n-tier architecture is that you need to create many isolated classes and pieces of software. However, benefits of n-tier applications will far outweigh its disadvantage.
Create Date
:
Tuesday, June 10, 2008
Tags
:
Asked At
:
None
Job Positions
:
None
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer

Here's what the resume advice company Resume Edge recommends as a sample answer to the question, "Where do you see yourself in ten years?"

In ten years, I endeavor to have refined my strategic and client relations skills. I intend to be a leading expert in estate planning. After having proven myself as a senior manager, I hope to help shape the strategic direction of estate planning services. I could do this in any number of official roles. The important thing is that I will continue contributing my abilities in a challenging and rewarding environment.

More advice

  • While it is not usually a good idea to try to be a Jim Carey in an interview, depending on how things have gone and who you are dealing with, you might inject a little humour here and ask: "When do you expect to be promoted?" ....or "When are you moving on?... This could easily break the ice. Seriously, you can easily respond that you have no idea as you have no idea what you are capable of so far, although you know it is a lot. Therefore, you want to make sure you are open and flexible to whatever opportunites present themselves. If you actually know what you want to be when you grow up, you could offer to conduct a seminar on how to actuate that.

  • You know when you come to that common situation where someone asks you "Where do you see yourself in five years?" Yea you should call a person on that because that question is silly! You have no idea where you'll be in five years nor should you worry. I mean how depressing can that question actually be? If someone asked me that question five years ago I wouldn't have predicted my life to be like this nor would I have wanted to say my life would be like this, I'm not saying I'm unhappy with my life necessarily its just that in a span of five years a persons likes and dislikes change, the people around them either disappear, reappear, or show up for the first time. The things you once loved could become something you hate or vice versa. Aspirations change and feelings lose their magic. Yes you can say what you'd like to see happen in five years but I'm pretty sure it won't and five years from now when you look back on yourself answering that question you'll probably no longer want the same things. There's always hope but no definite so all you can do is live life like you have those five years to look back on...

  • When an interviewer asks this question, they're asking where you see yourself within a company. They don't want to hear you say, "Well, in five years, I will be married to a handsome European man, touring the South Pacific in our yacht with a maitai in my hand." They want something like, "Well, that will depend on my individual performance and on the opportunities I'm presented with, but ideally, I will be..." Even if you're going, "Yeah, like I'll be here in 5 years..." act like you will be. They don't want to hear you saying you'll essentially use them to get where you want, and the minute the opportunity is presented jump ship.
  • Some might think that you should not tell the interviewer that you want to move up the ladder of success, because they will fear that you might replace them or move on to another job. However, most would recommend that you answer with just the opposite: that you do want to be successful. A good manager wants his employees to be successful and grow in their careers because that benefits the whole company. If they don't want this, you don't want to work for them. As for the actual standards of success and specific career paths, they are very different for different people and different industries. It is most important to show that you do want to be successful.
  • Think educationally-- higher degree? certification? Think leadership-- at least one step up from where you are at now.

Where will you be in five years?

This is a very common job interview question. Think carefully about your plans. Really answer it for yourself, Where do you see yourself in five years? Where do you hope to be?

The interviewer is looking to find out a few things with this question. First, are you the type of person who plans ahead and sets goals? You should be. Second, do your goals match those of the company and the position? Your goals need to fit the career path for the job. They don't want to lose you in a year or two.

Create Date
:
Friday, May 16, 2008
Tags
:
None
Asked At
:
None
Job Positions
:
None
Click here to improve the Interview Question, Answer and other fields.
Comments (3) :
1.
bbfromdc
Monday, June 30, 2008 6:15 PM
I hope I can be a supervisor myself
2.
bbfromdc
Wednesday, June 25, 2008 5:23 PM
"Well, in five years, I will be married to a handsome hunk and 2 naughty intelligent mini mes in my hand."