You have decided to help a coconut farmer make his batch pro…

You have decided to help a coconut farmer make his batch processor for separating out coconut oil. The separating device has one inlet channel containing coconut milk with a diameter of 7 cm (ρ=.997 gm/cm3). The device has two outlet channels (outlet 1 has a diameter of 2 cm and delivers coconut oil (ρ=0.903 gm/cm3) at 1D.AB (aka 10+D+A/10+B/100) mL/min, and outlet 2 delivers coconut water (ρ=1.01 gm/cm3) and has a diameter of 3 cm and volumetric flow rate four times that of outlet 1). Determine the mass flow rate and velocity of media in each of the three channels. What is the total volume of coconut oil produced in a 9-hour production shift? *helpful tip: you don’t need to worry about weight fractions for this problem*

Write a program that allows a user to perform text editing w…

Write a program that allows a user to perform text editing with Undo/Redo functionality which allows the user to specify how many steps to undo or redo at once. Example template-  #include #include using namespace std; class TextEditor {private:    struct Node {        string content;        Node* prev;        Node* next;        Node(const string& text) : content(text), prev(nullptr), next(nullptr) {}    };        Node* current;    public:    TextEditor() {        current = new Node(“”);    }        ~TextEditor() {        while (current->prev != nullptr) {            current = current->prev;        }        while (current != nullptr) {            Node* temp = current;            current = current->next;            delete temp;        }    }        void type(const string& text) {       //to do…    }        void undo(int steps) {       //to do..    }        void redo(int steps) {        //to do..        }    }        string getCurrentText() const {        return current->content;    }};   Example usage- int main() {    TextEditor editor;        // Test Case 1: Adding initial text    editor.type(“Hello “);    cout