Multiple choice technology web technology The proper sequence of installing a OSS from source is(are) ./configure;make;make install ./configure;make install ./configure --prefix=/usr/apps;make;make install ./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.