Conversion disorderConversion disorder (CD), or functional neurologic symptom disorder, is a diagnostic category used in some psychiatric classification systems. It is sometimes applied to patients who present with neurological symptoms, such as numbness, blindness, paralysis, or fits, which are not consistent with a well-established organic cause, which cause significant distress, and can be traced back to a psychological trigger. It is thought that these symptoms arise in response to stressful situations affecting a patient's mental health or an ongoing mental health condition such as depression.
Embryonic stem cellEmbryonic stem cells (ESCs) are pluripotent stem cells derived from the inner cell mass of a blastocyst, an early-stage pre-implantation embryo. Human embryos reach the blastocyst stage 4–5 days post fertilization, at which time they consist of 50–150 cells. Isolating the inner cell mass (embryoblast) using immunosurgery results in destruction of the blastocyst, a process which raises ethical issues, including whether or not embryos at the pre-implantation stage have the same moral considerations as embryos in the post-implantation stage of development.
Function pointerA function pointer, also called a subroutine pointer or procedure pointer, is a pointer referencing executable code, rather than data. Dereferencing the function pointer yields the referenced function, which can be invoked and passed arguments just as in a normal function call. Such an invocation is also known as an "indirect" call, because the function is being invoked indirectly through a variable instead of directly through a fixed identifier or address. Function pointers allow different code to be executed at runtime.