What is the purpose of this piece of code in the Shell terminal: sudo apt-get install apache2. Mark all the correct options
[ ] Install in Linux PostgreSQL.
[ ] Uninstall Apache Web server.
[ ] Install Apache Web server in Linux
OBS: If it is possible to explain the reason for the choice I would be grateful
sudo apy-get install apache2 will install Apaache Web server in Linux.
Answer: Option C
In windows, if any software is need to be installed, an executable file has to be downloaded and installed.
But in Linux, using apt-get install will automatically download and install all the packages that are need for the software.
What is the purpose of this piece of code in the Shell terminal: sudo apt-get install...