<span>The statement that P2P networks are most commonly used in home networks is true.
</span>P2P stands for peer-to-peer communication network. It is an example of local administration. <span> Two or more PCs share files and access to devices such as printers without requiring a separate server computer or server software with P2P type of network.</span>
Answer:
words.hasNext()
Explanation:
Given the code snippet below:
- while (inputFile.hasNextLine()) {
- String word = "";
- String line = inputFile.nextLine();
- Scanner words = new Scanner(line);
- while (words.hasNext()) {
- word = words.next();
- }
- System.out.println(word); }
- }
We have a inputFile Scanner object that can read data from a text file and we presume the inputFile has read several rows of data from the text file. So long as there is another line of input data available, the outer while loop will keep running. In each outer loop, one line of data will be read and assign to line variable (Line 3). Next, there is another Scanner object, words, which will take the current line of data as input. To get the last word of that line, we can use hasNext() method. This method will always return true if there is another tokens in its input. So the inner while loop will keep running so long as there is a token in current line of data and assign the current token to word variable. The word will hold the last token of current line of data upon exit from the inner loop. Then we can print the output (Line 8) which is the last word of the current line of data.
Answer:
C or D
Explanation:
If he has previous experience, C might be better answer, otherwise, D is right.
not sure with my answer either lol
Answer:
The correct options are;
The security administrator makes sure to shred and properly dispose of any printed confidential information
The security administrator uses password-protected files and folders on his work computer
Explanation:
A company's policies as written in the employee manual, with regards to confidentiality, generally includes provisions and procedures on how to handle confidential information, including the requirement for the shredding of of printed confidential information that are to be disposed, such as information about the way the company operates, the earnings of the company and employee records
Password protection keeps confidential files and folders from being able to be accessed by people without the prerequisite authority, which ensures the confidentiality of the company's information is maintained.