Answer:
Name of Operating System: Ubuntu
Five legal file names:
inventory.txt
total.txt
NIKKAH.txt
Defaulter.txt
studenT.txt
Five illegal file names:
wel/come.txt
..
MY>note.txt
.
my<work.yxt
Explanation:
To fix the illegal name:
1. Remove the special character, so it becomes welcome.txt
2. Remove the double dot and rename using text characters
3. Remove the special character, so it becomes MYnote.txt
4. A file cannot be named using dot. So we rename to a textual name
5. Remove the special character, so it becomes mywork.txt
Some additional rule for naming of files legally in Unix is that, you cannot use a reserved word to name your file. Starting a file name with number is allowed. Starting a file name with dot make the file to be hidden.
No sadly.
You can change your e-mail, profile picture, but that's about it.
I didn't see an option to change your name.
Answer:
Cleaning inside the computer
Defragmenting the hard drive
Deleting temporary files
Organizing data
Explanation:
In this activity Morgan is preparing the digital files to a printer on a DTP project.
Explanation:
DTP project is the creation of documents using page layout on a personal computer. The process of printing digital based images directly to variety of media substrates is known as digital processing.
The digital files like PDFs can be sent directly to digital printing press to print on paper, photo paper, fabric and so on.
They have unique fade rates and different sensitives to the various deterioration mechanisms. DTP is used for graphic designers to create documents.
Answer:
printStars(35);
Explanation:
public class Question {
public static void main(String args[]) {
printStars(35);
}
public static void printStars(int numberOfStars){
for(int i = 1; i <= numberOfStars; i++){
System.out.print("*");
}
System.out.print("\n");
}
}