In organization security on information is the most important concern. The police to drafted or made and dully signed by both employee and employer not to share the information to shared such as a password or any file to the outside world.
<u>Explanation:</u>
1. Share the network access password to an unauthorized person to access.
2. Sharing the workstation or desktop or laptop login password or file sharing outside the world to be avoided.
3. In any person not following and brought to notices and take necessary action and terminate the employee from the organization.
Answer:
thank you i really needed that and plus i just lost point by putting a question i mean i was asking for help and i still don't know the answer
hope u feel better
Answer:
TCP/IP
Explanation:
TCP/IP which stands for Transmission Control Protocol and Internet Protocol are network protocols which divide your message into smaller chunks or fragments known as network packets and sends them out onto the Internet. When the chunks arrive at the intended destination, TCP/IP on the receiving end reassembles the network packets into the original message.
TCP/IP are the main protocols used for sending data over the internet.
I think it's having a trusted adult with you to drive
Answer:
Explanation:
The following code is written in Java, the function takes in a list with the previous day's values. The function then uses that list, loops through it and multiplies each individual value by 2 and returns the modified list. The first red square represents the test case for the function, while the second red square in the image represents the output.
public static ArrayList<Integer> doubleIt(ArrayList<Integer> mylist) {
for (int x = 0; x<mylist.size(); x++) {
mylist.set(x, mylist.get(x)*2);
}
return mylist;
}