Answer:
(B) SAN
Explanation:
If you are looking to implement a high-speed network with the sole purpose of providing storage to other attached servers, you need to implement a SAN (Storage Area Network). SAN organizes storage by block and makes the storage blocks available to accessing server nodes over the network. The interconnecting network used within a SAN needs to be very high speed to reduce delays, so technologies such as Infiniband are used.
Answer:
Source data entry
Explanation:
Example of Source data entry devices are scanning device, Audio/ Video device.
Answer:
import java.util.Scanner;
public class num8 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter first number");
int X = in.nextInt();
System.out.println("Enter second number");
int Y = in.nextInt();
int Z;
if(X <= Y){
Z = 0;
}
else if(X >= Y){
Z = 1;
}
}
}
Explanation:
- The program is implemented in Java
- In order to set the values for X and Y, The Scanner class is used to receive and store the values in the variables (Although the questions says you should assume these values are set)
- The if conditional statement is used to assign values (either 0 or 1) to variable Z as required by the question.
Answer:
A percentage
Explanation:
Percentage is used to measure or calculate the relationship between total amount and portion of that amount. 100 is set as a reference value.
<u>Example</u>
In our exam results, we obtain marks from total marks of that exam or activity. To Find the relationship between obtain marks and total marks we calculate the percentage by using following formula:
<em>Percentage Marks = obtain marks/Total Marks X 100</em>
<em />
<em>So In given case, the firm should calculate the percentage to compare the results.</em>
<em></em>
Answer: the MAC (Media Access Control) address