Answer:
1 no.
ram
2
harmful software to the computer
3
local area network
4
bit
5
ram
6
morris malware
7
hard disk drive
8
read only memory9
gigabyte
hope this will help u
Answer:
a. new, running, waiting, ready, and terminated.
Explanation:
The process in a computer system can have different states and these are:
-New: When the process is created.
-Ready: When the process is waiting to be executed.
-Running: When the process is chosen to be executed.
-Waiting: When the process is expecting for something to happen.
-Terminated: When the process is not running anymore.
According to this, the answer is that the possible states of a process are: new, running, waiting, ready, and terminated.
D. A technology-and creativity-driven world
Answer:
public static void quad(double a, double b, double c) {
double D = (Math.pow(b, 2)) - (4 * a * c);
if (D<0){
System.out.println("no real solutions");
}
}
Explanation:
The code snippet above implements the function in Java programming language
As required by the question, the line double D = (Math.pow(b, 2)) - (4 * a * c); evaluates b squared" - 4ac and assignes the value to the variable D
An if statement is used to test if D is less than 0, if this is true the message no real solutions is printed
Answer:
B. Create a unique External ID field on Accounts in SFDC for matching.
Explanation:
- External ID is used to prevent duplicate records from being created as a consequence of the import operation, when importing custom objects or person accounts.
- An external ID is a specific field that contains the External ID attribute.
- External ID has unique record identifiers from a system that is outside the Salesforce.
- When this option is selected Data Import Wizard identifies existing Salesforce records with external IDs that match the values in import file.
- The External ID field enables to keep unique record IDs from an external system, usually for integration.
- External ID field values should be unique and determine whether or not value are case sensitive can also be determined. For example XYZ and xyz will not be considered same if case sensitive option is not selected.