answersLogoWhite

0

According to Wikipedia, "the word muti is derived from the Zulu word for tree, of which the root is -thi." It also says that "this noun is of the umu / imi class, consequently the singular (tree) is rendered Umuthi and plural (trees) is Imithi. Since the pronunciation of the initial vowel of this umu / imi class of Zulu noun, is unstressed, the singular Umuthi is sometimes heard as 'Muthi'. The word is rendered as muti due to the historical effects of British Colonial spelling."

User Avatar

Wiki User

17y ago

What else can I help you with?

Continue Learning about Movies & Television

What are the release dates for 60 Minutes - 1968 The Pentagon Turned Its Back on Them Absolutely Fabulous Flight 712 Riccardo Muti 27-36?

60 Minutes - 1968 The Pentagon Turned Its Back on Them Absolutely Fabulous Flight 712 Riccardo Muti 27-36 was released on: USA: 21 May 1995


What kind of American foods do Australians eat?

burgers and fries mustard Australia is pretty muti-cultural, so we vary in foods


Who is the sbi chairman?

Mr. O.P. Bhatt is the current chairman of State Bank of India. Sir, 1. Please reffer my SBI account number : 30978205764 open on 07 Dec 09. 2. The above mantitioned account no open already near-about three weeks. ATM-CUM-Debit Card, Suprimentry card & Muti-City-Cheque book has not been recevied till date and also not getting any type of lone not sanctioned by SBI, Branch code number : 4578. you are requested to approach SBI, Branch code number : 4578 for clear the above problem for the welfare of serving soldier. 3. Early action is requested and confirm.


Akshay Kumar height?

The Internet Movie Data Base (imdb.com) lists him as 6'1" . He is a physically fit actor in total. His height is very tall as his body is also.


What are the similarities between a process and a thread?

Thread and Process both do the same thing. ie. parallel jobs done on a CPU. The thread is under the process's control, ie. the programmer can control the thread regard to its priority, memory etc. I am not very sure about multi-threading and process-control under Windows. We have a process control system running on a 8086 based system. It is of Siemens make. It supports 64 threads which are called Tasks in their terminology. Initiation of task, suspending the task, readying the task etc is under the control the program, ie user software. In another computer Data General's M-600, we had multiple processes (max 64), each having a logical address space of 64 kilo bytes. Under each process we can have multiple tasks (I think max 32 tasks). The task control block is in the program's memory space. Intertask communication is pretty simple here. Sharing memory between tasks is simple as the entire memory of the process is under the control of the process. I have used a muti-tasking program under windows. One task continuously communicates with a groupp of microprocessor based controlers over RS-485, and another task processes the read data and does display, storage etc. The program was written in VC++(6.0) . Here the sharing of memory is easy as the entire memory of the process is shared between the tasks(threads). But VB uses something called compartmental multi-threading, meaning each thread has its own compartment of resources.