Answer:
Network topology is the arrangement of the elements (links, nodes, etc.) of a communication network. Network topology can be used to define or describe the arrangement of various types of telecommunication networks, including command and control radio networks, industrial field busses and computer networks.
 
        
             
        
        
        
Answer:
Check the explanation
Explanation:
// include the necessary packages
import java.io.*;
import java.util.*;
// Declare a class
public class DataReader
{
// Start the main method.
public static void main(String[] args)
{
// create the object of scanner class.
Scanner scan = new Scanner(System.in);
// Declare variables.
boolean done = false;
boolean done1 = false;
float sum = 0;
double v;
int count = 0;
// start the while loop
while (!done1)
{
// start the do while loop
do
{
// prompt the user to enter the value.
System.out.println("Value:");
// start the try block
try
{
// input number
v = scan.nextDouble();
// calculate the sum
sum = (float) (sum + v);
}
// start the catch block
catch (Exception nfe)
{
// input a character variable(\n)
String ch = scan.nextLine();
// display the statement.
System.out.println(
"Input Error. Try again.");
// count the value.
count++;
break;
}
}
// end do while loop
while (!done);
// Check whether the value of count
// greater than 2 or not.
if (count >= 2)
{
// display the statement on console.
System.out.println("Sum: " + sum);
done1 = true;
}
}
}
}
Sample Output:
Value:
12
Value:
12
Value:
ten
Input Error. Try again.
Value:
5
Value:
nine
Input Error. Try again.
Sum: 29.0
 
        
                    
             
        
        
        
Answer:
Theoretically one could design an architecture that would address 16 GB of memory with 32-bits of unique addresses.
Explanation:
 
        
             
        
        
        
Answer:
 17%
Explanation:
Given parameters: 
Cost price of liquor = $4000
Total sale = $24000
Unknown: 
Percentage cost of sale for liquor = ? 
Solution: 
To find the percentage cost of sale;
        %Cost of sale of liquor =  x 100
   x 100
 Input the variables; 
        %Cost of sale of liquor =  x 100 = 16.67% = 17%
  x 100 = 16.67% = 17%