Multiple choice technology web technology

The proper sequence of installing a OSS from source is(are)

  1. ./configure;make;make install

  2. ./configure;make install

  3. ./configure --prefix=/usr/apps;make;make install

  4. ./configure;make all;make install

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The complete proper sequence is ./configure with prefix to set target, then make to compile, then make install to install. Option C shows the full correct sequence with prefix specified.