Answer:
1st question=no
2nd question=consumer will never be satisfied.Unless the technology is super strong that nothing can stop it
3rd question=almost everything,first they build technology because they want humans life to be easy.
wish it helps
Answer: If your trying to get rid of em. The best way to do that is to put them in the recyling bin and then empty it. Doing that will delete them off your computer so they can't be found.
Explanation: Also keep in mind that whether or not you delete them they'll still be on your hard drive.
Answer:
Yes.It would be considered as a computer Crime.
Explanation:
This is because you are an unauthorised user
Answer:
Explanation:
The following piece of code is written in Java. It creates the method as requested that takes in two generic objects and compares them using the .equals() built in Java method. This method will return True if the objects are identical or False if they are not. A test case is used in the code and the output can be seen in the attached image below.
public static <T> boolean comparePerez(T a, T b) {
return a.equals(b);
}