answersLogoWhite

0

The main function of PBS (phosphate buffer saline) is to maintain the pH of the solution.

by

Himanshu Goel

Jaypee University of Information Technology

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Biology
Related Questions

What is the molarity of 1x PBS buffer and how to prepare 20 mM PBS buffer?

1x PBS buffer typically has a molarity of around 0.01 M. To prepare a 20 mM PBS buffer, you would need to dilute the 1x PBS stock solution with water. For example, to make 1 liter of 20 mM PBS buffer, you would need to mix 2 ml of 1 M PBS stock solution with 98 ml of water.


The pH of 10x PBS buffer?

The pH of 10x PBS buffer is typically around 7.4 when it is freshly prepared. It is important to note that the pH can change over time due to factors such as storage conditions and contamination. Regularly checking and adjusting the pH of the buffer is recommended for accurate results.


Function of a frame buffer in computers?

function of a frame buffer in computer?


What is the function of pbs in elisa?

PBS, or phosphate-buffered saline, serves as a crucial wash and dilution buffer in ELISA (Enzyme-Linked Immunosorbent Assay) protocols. It helps maintain a stable pH and osmotic balance during the assay, ensuring that proteins and antibodies remain soluble and functional. Additionally, PBS minimizes non-specific binding, improving the specificity and accuracy of the assay results.


What is the function of Phosphate Buffered Saline?

PBS (phosphate buffer saline) is used to maintain osmolarity of cells i.e. maintaining an isotonic environment. it is used to maintain pH of proteins at which its native structure could be maintained.


What is the name of formula PBS?

The name of the formula PBS is Phosphate Buffered Saline. It is a solution commonly used in biological and chemical research as a buffer to maintain a stable pH.


10x PBS buffer?

10X PBS (0.1M PBS, pH 7.4): NaCl --------------------------------------------- 80 g KCl----------------------------------------------- 2g Na2HPO4 (anhydrous) ----------------------- 14.4 g KH2PO4 (anhydrous) ------------------------- 2.4g Distilled water ------------------------------- 1000 ml Mix to dissolve and adjust pH to 7.4 Store this solution at room temperature. Dilute 1:10 with distilled water before use and adjust pH if necessary.


What is the difference between phosphate buffer and phosphate buffered saline?

Phosphate buffer is a solution containing a mixture of dibasic and monobasic sodium phosphate used to maintain a stable pH. Phosphate buffered saline (PBS) is a buffer solution containing phosphate salts, sodium chloride, and sometimes potassium chloride used in biological and chemical research to provide a stable environment for cells. PBS is a specific type of phosphate buffer solution that is isotonic and mimics the pH and osmolarity of biological fluids.


What is the function of ssc buffer?

SSC buffer increases ionic strength so precipitation of DNA or RNA is increases.CHARUSAT UNIVERSITY.


What is the function of a buffer?

to resist drastic changes in the pH of a solution


Why gets function gives a warning every time you compile a c program?

It is unsafe. In order to use gets() safely, you need to know how many characters you will be reading to ensure your character buffer is large enough: char buffer[10]; while (gets (buffer) != 0) { ...process buffer... } The above code has undefined behaviour when the number of characters read is 10 or more (you need one character for the null-terminator). This is because the character buffer, str, decays to a pointer (referencing &str[0]) and the function, gets(), cannot determine the number of characters in a buffer by its pointer alone. The gets() function was dropped from the C standard in 2011, however some implementations still include it. To avoid the warning, use the fgets() function instead. This allows you to specify the length of your buffer and (when used correctly) prevents buffer overflow. char buffer[10]; while (fgets (buffer, 10, stdin) != 0) { ...process buffer... }


Which one of the following combinations cannot function as a buffer solution: a) HCl and NaCl, b) NH and NHCl, or c) HNO and NaNO?

The combination that cannot function as a buffer solution is a) HCl and NaCl.