Answer:
ls, cd, cat, nano, gedit
Explanation:
There are several commands that will help the sys admin navigate through files but the most common ones are ls and cd. The cd command is quite helpful especially if the sys admin wants to change the current working directory. The ls, however, is the go-to command when we want to navigate and list computer files and folders. Typing ls without invoking any arguments will list all the files in the current working directory. He can invoke extra arguments if he wants to like adding an -a and will list entries starting with . To open text files, the sys admin can use cat, nano, or gedit followed by the text file name to view contents in that file.
I believe photoshop since it has elements of productivity
Answer:
<u>Property</u>
Explanation:
Intellectual Property (IP) is the lawful protection of human idea/intellect by unauthorised users. These human intellects are intangible assets that have both moral and commercial value. They include ideas, art, music, movies, software e.t.c.
Common types of Intellectual property include
- Copyrights
- patents
- Trade Marks
- Trade Secrets
Answer:
Explanation:
The answer is The tree structure suggests the main benefit of folders: to organize your files. You can create folders to store and organize your pictures, your documents, your videos, and so on. Folders are also used to separate the files created by different users.
Answer:
The function declaration to this question as follows:
Function declaration:
//declaring method printFeetInchShort, that accepts two integer parameters
void printFeetInchShort(int numFeet,int numInches) //method
{//method body
printf("The given height is: "); // message printing
printf("%d\'%d\" ", numFeet,numInches); //value printing
}
Explanation:
In the above method (function) declaration a method "printFeetInchShort" is declared, that accepts two integer variable as its parameters.
- This method uses a return type void, which means it will not return any value.
- The parameter "numFeet and numInches" accepts an integer value in the main method and inside the method, it will print its value by a single and double quote.