how to completely remove mongodb from ubuntu code example

Example 1: uninstall mongodb ubuntu

sudo apt-get purge mongodb-org*

Example 2: mongodb install in ubuntu

sudo apt update
sudo apt install -y mongodb
//checking service and db
sudo systemctl status mongodb
or service mongodb status
//start service
sudo systemctl start mongod
or service mongodb start
//stop service
sudo systemctl stop mongod  or
service mongodb stop

Example 3: uninstall mongodb ubuntu

sudo rm -r /var/log/mongodb
sudo rm -r /var/lib/mongodb

Example 4: how to install mongodb server in ubuntu

sudo apt install -y mongodb
# it will install mongodb server into linux system