answersLogoWhite

0


Best Answer

Plate streaking is often done to isolate a colony of bacteria. For instance, if a broth was grown with 2 or 3 different types of bacteria, it could be streaked out in a "3-phase streak." In a 3-phase streak the initial streak takes up a very small area (we draw a T on the back of the plate, this streak goes in the section above the T). The loop is flamed to kill off any bacteria still on it, then a couple streaks are made out of the original. This grabs some of the bacteria from that concentrated streak and spreads them out. This is repeated once more until the final streaks are less and less concentrated bacteria.

When we incubate the plate we'll find lots of growth where the original streak was and less and less as we follow the path of the 3-phases. What you're looking for now is a single colony, off by itself. This can then be scraped off and plated on a separate plate and considered a "pure colony."

Another usual time to use streak-to-grow bacteria is when you want to know the quantity or concentration of bacteria. You take maybe 0.1mL of solution and plate it, then count the number of colonies that form. Say you have 56 colonies, now you can say:

56 cfu (colony forming units)

--------

0.1 mL

or 560 cfu/mL

This is usual when testing to see whether a sterilization technique worked, or if a product is within the regulated levels of bacteria to be released the public, etc etc.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When would a microbiologist want to use the streak-to-grow method.?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What measurement unit microbiologist use when they want to measure something really small?

DNA And RNA


What boot parameter would you use to begin an FTP installation?

You would want to use Askmethod or method.


What does objectives means on a resume?

Your objective is the job that you want. For example, an objective could be: High School Social Studies Teacher, Clinical Psychologist, or Microbiologist.


The scientific method is a method for?

It's a method for you to use when you want to experiment.


If your stock spoils which method of moving inventory would you want to use?

fifo


Why would you want to do an interview for a job analysis method?

You might want to interview someone who is doing a job, to obtain information that you could analyse.


Apply Concepts and enspIn general when would you use filtration to separate a mixture When would you use distillation to separate a mixture?

- Filtration is a method of separation when we want to separate solids from a liquid.- Distillation is a method of separation when we want to separate the components of a liquid mixture, relying on the differences between boiling points.


What is need for static method?

Static methods are methods that can be invoked without creating an instance of the class that contains them. They are needed in cases where the programmer would not want to create multiple instances of a class to execute a method.


Why might you want to define an abstract class?

You would use an abstract class when you want a number of classes to have a similar functionality/methods list. The abstract class will have only method declarations and no definitions. So any class that extends this abstract class would have to provide the method definitions. This way you can ensure that all these classes will have a similar set of methods/features. This type of usage of an abstract class is similar to interfaces.


What does the final modifier mean on a method parameter?

We usually use the final modifier on parameters to methods when we want to make it clear that the supplied value cannot be modified inside the method. The compiler would complain as soon as you accidentally try to assign it a new value inside the method


When is a return statement required in a method?

1) When you want to end the method prematurely for any reason. However, it is usually recommended to have a single exit point in a method, so you may want to avoid this. 2) When the method produces a result, which must be returned to the calling program.


When do you declare a method final in java?

You declare a method final in Java when you do not want any subclasses of your class to be able to override the method. I have also heard that this allows the Java compiler to make more intelligent decisions. For example, it supposedly allows Java to decide when to make a method inline. (Note that this is all unconfirmed)