You can go to their house and talk to them
Answer:
Always encrypt data never store anything in plain text someone could use wireshark to pull out a data packet and if the data is not encrypted, expect things to happen.
Answer:
Resource Ownership and Scheduling execution
Explanation:
In process characteristic the characteristic is
- Resource ownership
- Scheduling / Execution
In Resource ownership, the OS performs a protection function where unwanted interference in processes are with resources
In scheduling execution, the process has execution state and scheduled. They can be separated by resource ownership.
The dispatching of the process is the lightweight process, and it is multi-threading. The ability of the operating system supports the single concurrent process.
The process is a unit in the resource protection and protected the CPU and other processes. It contains the multiple thread execution
Each thread contains the running, ready state and saved the thread context and access the memory. Some necessary activities of the various threads are the same address space and the resources.
System operations of the website u are asking to access
Answer:
result 1 = false;
result 2 = true;
Explanation:
result 1 = (43 < -77 && 1! = 10)
43 < -77 = false
1 != 10 = true
for any false && true logical operator, it returns false
result 1 = false;
false = 90 < -77 || -1 < 43
90 < -77 = false
-1 < 43 = true
for any false || true logical operator, it returns true
result 2 = true;