Question & Additional Information
 
Suppose that an investigator wanted to use DNA fingerprinting to associate a blood sample with a criminal. What materials would be necessary?
Add to My IQ
 

 | 
Inappropriate
Answer Title
Answer
In RFLP analysis, the DNA of an organism is cut up into fragments using restriction enzymes. A large number of short fragments of DNA will be produced.
Restriction enzymes always cut at the same base sequence.
Because no two individuals have identical DNA, no two individuals will have the same length fragments. For
example, the enzyme EcoRI always cuts DNA at the sequence GAATTC.
Different people  have different numbers of this particular sequence and will therefore have different fragment
lengths.  some of them will be at different locations on the chromosome.
DNA were placed on the gelatin.
The DNA bands must be stained to make them visible.
Ethidium bromide-stained DNA will fluoresce when illuminated with UV light.
PCR techniques are used to produce sufficient quantities of DNA for this technique.
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
Many factors will be involved. Work permit , job status, location, luck etc etc
Create Date
:
Sunday, September 28, 2008
Tags
:
Asked At
:
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

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."
Flag this interview question as inappropriate Inappropriate
See Answer
If you want to create a table, you can run the CREATE TABLE statement as shown in the following sample script:
<?php
include "mysql_connection.php";
$sql = "CREATE TABLE Tech_links ("
. " id INTEGER NOT NULL"
. ", url VARCHAR(80) NOT NULL"
. ", notes VARCHAR(1024)"
. ", counts INTEGER"
. ", time TIMESTAMP DEFAULT sysdate()"
. ")";
if (mysql_query($sql, $con)) {
print("Table Tech_links created.\n");
} else {
print("Table creation failed.\n");
}
mysql_close($con);
?>
Remember that mysql_query() returns TRUE/FALSE on CREATE statements. If you run this script, you will get something like this:
Table Tech_links created.
Create Date
:
Saturday, May 10, 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
Property sheets are tabbed dialog boxes containing pages that the user can switch with mouse clicks. They are a part of common library of windows just like dialog and other controls. E.g. when a user adds a schedules task it walks him through a wizard which is nothing but a property sheet. The functionality of property sheets is encapsulated in MFC classes of CPropertySheet and CPropertyPage. CPropertyPage represents a page in a property sheet and is a subclass of CDialog. Like dialog boxes property sheets can be modal or modeless. Use CPropertySheet::DoModal for modal and CPropertySheet::Create for a modeless property sheet.  There are four broad steps in creating a property page: 1. For each property page create a dialog template.   2. For the created dialog associate a class that derives from CPropertyPage.   3. Derive a property sheet class from CPropertySheet and create an object for each above created property pages.   4. Add the property page objects to the created property sheet using AddPage.   5. Call the doModal function of the property sheet to display it on the screen.
Create Date
:
Saturday, May 10, 2008
Tags
:
Asked At
:
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
OPEN cursor variable FOR SELECT.Statement CLOSE cursor variable In order to associate a cursor variable with a particular SELECT statement OPEN syntax is used.In order to free the resources used for the query CLOSE statement is used.
Create Date
:
Saturday, May 10, 2008
Tags
:
Asked At
:
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
It is a tough question..
In business , it should be business strictly..
An Engineer shud act like an Engineer
A Doctor should act like a doctor
A diplomat is a diplomat
so professional achievement is different from personal achievementou
Some times you can always make mistakes judging people..

In life you value always your blood relatives at any circumstances..and true friends..and well wishers..
Create Date
:
Sunday, April 27,