answersLogoWhite

0

To prepare fufu, start by boiling starchy ingredients like cassava, yams, or plantains until soft. Drain the water and then pound the cooked ingredients using a mortar and pestle or a food processor until smooth and stretchy. The consistency should be thick and elastic. Serve it alongside soups or stews for a traditional meal.

User Avatar

AnswerBot

5mo ago

What else can I help you with?

Related Questions

Does 'new fooCNT' call the default 'foo' constructor on all 'CNT' array elements?

Yes. The following example demonstrates this: #include<iostream> struct foo { foo(){ std::cout<<"foo"<<std::endl; } ~foo(){ std::cout<<"~foo"<<std::endl; } }; int main() { int CNT=5; foo * f = new foo[CNT]; delete [] f; return(0); } Output: foo foo foo foo foo ~foo ~foo ~foo ~foo ~foo


What does foo foo mean in Samoan?

foo foo means fufu is a popular African food


Types of recursion?

Direct: int foo () { ... foo (); ... } Indirect: int foo () { ... bar (); ... } int bar () { ... foo (); ... }


How do you play with your foo pet if you have no foo dollars?

same as foo pets


What is foo-foo in Things Fall Apart?

Foo-foo is pretty much yam paste ground up in mortars.


Is red foo married?

yes. he and is wife, Kung Foo, have a son, Pitida Foo...


What is the birth name of Jon Foo?

Jon Foo's birth name is Jonathan Patrick Foo.


What is foo foo from Africa?

pounded yam!


Can you have a litter of foo pets when not member foo?

no


Is red foo name red foo?

No


Do you have to join club foo to have a foo pet?

No. But you cant do a lot o the fun things with your foo-pet without club-foo. I recommend trying the one month club foo membership to see how you like it.


C plus plus program using operator overloading?

class foo { private: int m_data; public: foo (int data=0): m_data (data) {} foo (const foo& source): m_data (source.m_data) {} foo (foo& source): m_data (std::move (source.m_data)) {} // operator overloads: assign foo& operator= (const int source) { m_data = source; return *this; } foo& operator= (const foo& source) { m_data = source.m_data; return *this; } foo& operator= (foo& source) { m_data = std::move (source.m_data); return this; } // compound operator overloads: increment and assign foo& operator+= (const foo& rhs) { m_data += rhs.m_data; return *this; } foo& operator+= (const int rhs) { m_data += rhs; return *this; } };