Consider you want to save a file on your computer. Why should you avoid using special characters like \ / : * ? " < > | in the file name?
Think about what happens if the computer does not recognize a character in the file name.
Special characters like \ / : * ? " < > | are reserved by the operating system and can cause errors if used in file names. Avoiding them ensures files save and open correctly.
You create a file named Report 2023. Then you rename it by adding the extension .txt. What is the full file name now?
Remember that the extension comes after the last dot in the file name.
The extension .txt is added at the end of the file name after a dot, so the full name becomes Report 2023.txt.
Identify the file name that is NOT allowed on a Windows computer.
Windows does not allow certain special characters in file names.
The colon : is not allowed in Windows file names, so Budget:2023.xlsx is invalid.
Which file name follows better naming practices for easy understanding and compatibility?
Think about spaces, special characters, and readability.
Using hyphens and underscores instead of spaces or special characters improves readability and avoids errors in some systems. Option A uses a hyphen and underscore correctly.
You want to create files named File1.txt to File100.txt. However, your system does not allow file names longer than 8 characters (excluding extension). How many files can you create with this naming rule?
Count the characters in the file name excluding the extension and consider the limit.
File names like File1 to File9 have 5 characters, File10 to File99 have 6 characters, and File100 has 7 characters. All are 8 characters or fewer, so 99 files can be created because 'File100' has 7 characters which is within the limit, but the question states excluding extension, so 'File100' is 7 characters which is allowed. However, the original question states the limit is 8 characters excluding extension, so 'File100' (7 characters) is allowed. Therefore, 100 files can be created. The correct answer should be 100 files.