INTERVIEW QUESTION FOR APPLICATION AND PRODUCTION SUPPORT: Question 1: How can you remove the directory in Unix? Ans The directory can be removed by using rmdir command. Below syntax is provided for your Reference: $ rmdir filename Question 2: How can you make the directory in UNIX? Ans The directory can be maked by using mkdir command. Below syntax is provided for your Reference: $ mkdir filename Question 3: How to remove the files in UNIX? Ans We can remove the filename by using the below command. $ rm <filename> One can use –r with rm command to delete all the sub-directories recursively. $ rm –r Rahul1.txt Question 4: How can you copy files from one directory to another in UNIX? Ans cp command is used to copy file from one directory to another directory. Syntax for the below command: Cp –r source filename destination filename Here, -r is used to copy all the content of directory including the subdirectories recursively. Question 5: How can you move files from one directory t