answersLogoWhite

0


Best Answer

The liver functions normally while a person is drinking. It is the liver that primarily metabolizes the alcohol being consumed.

Another Answer:

The liver is stressed while metabolizing alcohol. Alcohol (ab)use is one of the primary causes of liver failure.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

That would depend on how 'off' or abnormal the liver function tests are and the patients health and drinking history. They may not return to normal if the liver has been damaged permanently.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How long does it take for normal liver function to return after a month of heavy drinking alcohol?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How long does it take for elevated liver enzymes to return to normal after cessation of alcohol consumption?

It takes approximately twenty-four to forty-eight hours for elevated liver enzymes to return to normal after cessation of alcohol consumption. For smaller individuals, it can take even longer.


How is a ministroke different from a stroke?

Unlike in a true stroke, normal brain function will return with 24 hours


What is the process that would attempt to return the blood Ph to normal so the cells could function properly?

homeostasis


What is the body process that would attempt to return the blood pH to normal so that cells could function properly?

homeostasis


How do you use return function?

return;orreturn ;PS: not function, statement!


The body process that would attempt to return the blood pH to normal so that cells could function properly is called .?

homeostasis


The body process that would attempt to return the blood pH to normal so that cells could function properly is called?

homeostasis


What number will the function return if the input is 12.2?

36.6


What is a return statement used for?

It means end the function. Functions automatically end when execution reaches the end of the function, but you can return from a function at any point within the function with a return statement. If the function returns a value to its caller, you must provide a reachable return statement along with the value you wish to return.


Write a program to return a function using class in C Plus Plus?

Classes cannot return values, only functions can return values. But you cannot return a function from a function, you can only return a function pointer -- a pointer variable holding the address of the function you wish to return. All possible return values must be of the same type, therefore all function signatures and return types must be exactly the same -- only the name of the functions can differ.


The set of all values that a function will return as outputs is called the of the function?

The set of all values that a function will return as outputs is called the *range* of the function.


What is the difference between return 0 and return -1 in c?

If we consider any function that is not the main function that is declared as "bool" i.e it will return boolean values to the main function-0 & 1, meaning 'false' and 'true' respectively. If we have to tell the main function that the condition checked in the function is false or disagreed, then we return 0 to the main function and when we have to tell that the condition checked in the main function is true or agreed, then we return 1 to the main function.