0 pts.

Answer Wiki:
In what context? When googled you get over 1.2 million hits.
Last Wiki Answer Submitted:  August 30, 2005  4:09 pm  by  Rjournitz574   0 pts.
All Answer Wiki Contributors:  Rjournitz574   0 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Acronym Finder at http://www.acronymfinder.com/ lists 5 meanings. To me, the one most likely for most of us would be Documents of Understanding, but Data Objects Unprocessed seems relevant if a bit more obscure. While I’d never come across DOU before, it is very similar to the MOU (Memoranda of Understanding) and MOA (Memoranda of Agreement) my government agency employer uses to document the conditions on exchange of data.

 0 pts.

 

If you are referring to RPG, DOU means “Do Until”. This command will perform a loop (matched with an “End” or “Enddo”).
Eg.
X=1
DOU X=5

 0 pts.

 

If you are referring to RPG, DOU means “Do Until”. This command will perform a loop (matched with an “End” or “Enddo”).
Eg.
Eval X=1
DOU X=5
Eval X=X=1
EndDo
This example will go through the loop 5 times with the result of X being 5.
“DOU” is similar to “DOW” (Do While), where the difference is that the DOU will always perform 1 pass through the loop whereas DOW will perform the comparison and only continue into the loop if the condition is met, otherwise the program continues after the End (EndDo).
Eg.
Eval X=1
DOW X=5
X=X+1
Enddo
The result is that the loop will not execute and the value of X is 1.

 0 pts.

 

Document of Understanding is what I have heard it used for.

 0 pts.