HypertoniaHypertonia is a term sometimes used synonymously with spasticity and rigidity in the literature surrounding damage to the central nervous system, namely upper motor neuron lesions. Impaired ability of damaged motor neurons to regulate descending pathways gives rise to disordered spinal reflexes, increased excitability of muscle spindles, and decreased synaptic inhibition. These consequences result in abnormally increased muscle tone of symptomatic muscles.
Parameter (computer programming)In computer programming, a parameter or a formal argument is a special kind of variable used in a subroutine to refer to one of the pieces of data provided as input to the subroutine. These pieces of data are the values of the arguments (often called actual arguments or actual parameters) with which the subroutine is going to be called/invoked. An ordered list of parameters is usually included in the definition of a subroutine, so that, each time the subroutine is called, its arguments for that call are evaluated, and the resulting values can be assigned to the corresponding parameters.
Expressive aphasiaExpressive aphasia, also known as Broca's aphasia, is a type of aphasia characterized by partial loss of the ability to produce language (spoken, manual, or written), although comprehension generally remains intact. A person with expressive aphasia will exhibit effortful speech. Speech generally includes important content words but leaves out function words that have more grammatical significance than physical meaning, such as prepositions and articles. This is known as "telegraphic speech".
EncephalopathyEncephalopathy (ɛnˌsɛfəˈlɒpəθi; from ἐνκέφαλος "brain" + πάθος "suffering") means any disorder or disease of the brain, especially chronic degenerative conditions. In modern usage, encephalopathy does not refer to a single disease, but rather to a syndrome of overall brain dysfunction; this syndrome has many possible organic and inorganic causes. The hallmark of encephalopathy is an altered mental state or delirium. Characteristic of the altered mental state is impairment of the cognition, attention, orientation, sleep–wake cycle and consciousness.
Return statementIn computer programming, a return statement causes execution to leave the current subroutine and resume at the point in the code immediately after the instruction which called the subroutine, known as its return address. The return address is saved by the calling routine, today usually on the process's call stack or in a register. Return statements in many programming languages allow a function to specify a return value to be passed back to the code that called the function.
Perivascular spaceA perivascular space, also known as a Virchow–Robin space, is a fluid-filled space surrounding certain blood vessels in several organs, including the brain, potentially having an immunological function, but more broadly a dispersive role for neural and blood-derived messengers. The brain pia mater is reflected from the surface of the brain onto the surface of blood vessels in the subarachnoid space. In the brain, perivascular cuffs are regions of leukocyte aggregation in the perivascular spaces, usually found in patients with viral encephalitis.
Transcortical sensory aphasiaTranscortical sensory aphasia (TSA) is a kind of aphasia that involves damage to specific areas of the temporal lobe of the brain, resulting in symptoms such as poor auditory comprehension, relatively intact repetition, and fluent speech with semantic paraphasias present. TSA is a fluent aphasia similar to Wernicke's aphasia (receptive aphasia), with the exception of a strong ability to repeat words and phrases. The person may repeat questions rather than answer them ("echolalia").
AphasiologyAphasiology is the study of language impairment usually resulting from brain damage, due to neurovascular accident—hemorrhage, stroke—or associated with a variety of neurodegenerative diseases, including different types of dementia. These specific language deficits, termed aphasias, may be defined as impairments of language production or comprehension that cannot be attributed to trivial causes such as deafness or oral paralysis. A number of aphasias have been described, but two are best known: expressive aphasia (Broca's aphasia) and receptive aphasia (Wernicke's or sensory aphasia).
Void typeThe void type, in several programming languages derived from C and Algol68, is the return type of a function that returns normally, but does not provide a result value to its caller. Usually such functions are called for their side effects, such as performing some task or writing to their output parameters. The usage of the void type in such context is comparable to procedures in Pascal and syntactic constructs which define subroutines in Visual Basic. It is also similar to the unit type used in functional programming languages and type theory.