InterviewUp is actively seeking partnerships. Inquire at business@interviewup.com

Questions 1 - 10 of 18
Close
Flag this interview question as inappropriate Inappropriate
See Answer
I want to be able to give back to  minority communities and have an excuse to shoot black people. I love a challange and know that Policing is a rewarding and challanging way to beat the shit out of people. Most people hate Police personel and belive I can be a great role model to the children in our community by beating up their parents in front of them so they finally take back their community from me and other uniformed gangs. I want to do my part to live in a  police state.
Create Date
:
Tuesday, September 09, 2008
Tags
:
None
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
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
No.  Once the proper catch block processed, control is transferred to the finally block (if there are any).
Create Date
:
Tuesday, May 13, 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
(Refer to accomplishments. Everyone has had a few of these pressure situations in a career. Behavior-related questions aim at assessing a candidate's character, attitude, and personality traits by asking for an account of how the candidate handled certain challenging situations. Plan for such questions by making a list of the desirable traits relevant to the needs of the industry or prospective employer and by preparing some job-related stories about your experience that demonstrate a range of those traits and habits of conduct. Before answering the questions, listen carefully and ask any clarifying questions you think necessary. Tell your story and conclude by explaining what you intended your story to illustrate. Finally, ask for feedback: "Does this tell you what you need to know?")
Create Date
:
Friday, May 09, 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

The data unit created at the application layer is called a message, at the transport layer the data unit created is called either a segment or an user datagram, at the network layer the data unit created is called the datagram, at the data link layer the datagram is encapsulated in to a frame and finally transmitted as signals along the transmission media.
Create Date
:
Monday, April 28, 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
Actually, there can be several causes of fuzzy characters on the display. The first step in checking out this problem is to reset the display resolution to standard VGA values. If the fuzzy characters remain, check the intensity and contrast controls to see if they are out of adjustment. Finally, you might need to remove built-up electromagnetic fields from the screen through a process called degaussing. This can be done using a commercial degaussing coil. However, newer monitors have built-in degaussing circuits that can be engaged through their front panel controls. These monitors normally perform a degauss operation each time they are turned on. However, there are occurrences when the user might need to performthis operation.
Create Date
:
Friday, April 25, 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
When a PC is turned on, the entire system is reset to a predetermined starting condition. From this state, it begins carrying out software instructions from its BIOS program. This small programs permanently stored in the ROM memory IC located on the system board. First, the BIOS performs a series of diagnostic tests (called POST, or Power On Self Tests) on the system to verify that it is operating correctly. Next, the BIOS places starting values in the system's various programmable devices. These intelligent devices regulate the operation of different portions of the computer's hardware. This process is called initialization. Finally, the BIOS performs the bootstrap sequence where it searches the system for a special program that it can use to load other programs into RAM and start the operating system.
Create Date
:
Thursday, April 24, 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
Fair question. Let's take my jobs in order. At Net2Net, I learned how to implement an enterprise network management strategy. Then at 5Com, I worked with client-side Java programming. After that, I finally got my hands on . . .
Create Date
:
Monday, March 10, 2008
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
o final - declare constant
o finally - handles exception
o finalize - helps in garbage collection,knlk n;lk nl; l;kn ;lk jl m; m;lml; m;l,

Variables defined in an interface are implicitly final. A final class can't be extended i.e., final class may not be subclassed. This is done for security reasons with basic classes like String and Integer. It also allows the compiler to make some optimizations, and makes thread safety a little easier to achieve. A final method can't be overridden when its class is inherited. You can't change value of a final variable (is a constant). finalize() method is used just before an object is destroyed and garbage collected. finally, a key word used in exception handling and will be executed whether or not an exception is thrown. For example, closing of open connections is done in the finally method.

Create Date
:
Sunday, September 02, 2007
Asked At
:
Job Positions
:
None
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 

Of course you must take into account your personal situation with your finances and responsibilities.  Only you know whether you need to accept the job or not. With this said, there are many ways to view your current situation. First, if you are being severely underpaid for the position given the pay range for the position and taking into account your experience (or lack thereof) - this is not a recommended way to begin a career or new employment. If you truly believe that you are not being paid what the position should provide for someone with your background and skills, you will be unhappy from the moment you start working the new position. From experience, I have taken such jobs for low pay in order to "pay the bills" but I immediately started looking for better opportunities elsewhere. When you begin a career at a company or in your case a hospital, you must be extremely careful when agreeing to your starting wage. The starting wage is where you must work your way up the pay scale from. If you start out too low - you will find that afters years of hard work and pay raises that you will finally reach the pay level that you are worth today! Companies love this because they can give you many raises and still get a bargain for your services. In order to negotiate the best starting salary for a position, you need a starting point or base range of salaries. This means doing research online, perhaps other hospitals that are nor affiliated with the hospital you are interviewing with, check the job boards, ask career professionals, and if it's a state funded hospital you may find public records of the hospital's financials. It is best to try and figure out the range of salaries offered for the position - from the lowest to the highest. When you do this, you know what are your "possible" or "realistic" salaries for the position. Now that you have a range of salaries, you consider your skills, work history, and experience. Given everything you know about the position, your personal finances, career goals, given job opportunities in location, etc. You must figure out what is the minimum pay you would accept - where you felt and believed that you are willing to accept and be "OK" to earn. You don't have to absolutely be thrilled about it, but you want to be sure you won't wake up every morning upset that you are going to work for such a low wage - unless of course you are doing so to "Pay the Bills". Basically, from the way you phrase your question it sounds like you really want the job, just not for the wage they are offering. Now that you know from your research the range of salaries they offer for the position and the absolute lowest wage you are willing to take for the job - you can figure out the wage differential (Your desired wage minus the lowest acceptable wage = the price difference between a job and a great job). Now take the price difference and think about what it can purchase or provide for you? OK, now here is the part where you take a moment and seriously considered if you want to risk the job position at all by asking for a better starting wage for when you get hired or want to just accept what they offer you. Then make your choice whether you want the job with or without the increase pay. If you decide to go for the increase pay, you can take either the direct or indirect approach when asking for the increase. Direct Approach: Be confident in a genuine way, believe in yourself and express clearly why your skills, experience, background, work history, etc. warrant a higher starting salary. If you really have what it takes, there is nothing wrong in being open about your desire for a hirer starting salary. Whatever do you, don't say that you deserve it because someone else has a higher salary. When you concentrate on what someone else gets paid and you don't focus on your abilities, skills, and good qualities that you have developed within yourself - this will only impact you negatively in the long-run. Indirect Approach: Ask leading questions to get more information about the position and the salary range. For example, ask "What is the typical salary range for this position?" That's a fair question. Then you may ask, "What do they look for in an employee, or what types of skills or qualifications are necessary to obtain raises?" How often are there opportunities for reviews for pay increases?" If you think about your situation you can gather enough questions to get at the important information you need to make your decision. Lastly, I have found that in many cases that it is easier to work your way up, or find un-expected opportunities within a company or hospital than from the outside. If you are the type of person who constantly challenges yourself to learn new skills and take on additional duties or responsibilities to gain the experience and skills necessary to do job well (and with a good positive attitude) you will always be confident that you have got what it takes to get what you desire and deserve. Good Luck.

Create Date
:
Tuesday, October 30, 2007
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 


Check out our newest job listings!

Post a Job! $49 for 60 days




InterviewUp is actively seeking partnerships. Inquire at business@interviewup.com

Suggestions & Comments




Share Your Interview Questions
Ask Interview Questions
View Unanswered Questions

















Advertise on this site