Multiple choice technology how to make a copy of file "upper" in the directory two levels up? jump -2 upper cp upper ../.. cp upper -2/ copy upper -2/ Reveal answer Fill a bubble to check yourself B Correct answer Explanation The cp command copies files. '../..' means parent directory's parent (two levels up). 'cp upper ../..' copies file 'upper' to that location. Options A, C, and D use non-existent or incorrect commands.