Answer:
include iPods, PlayStations, Xbox, TiVo, and WRT54G.
Explanation:
 
        
                    
             
        
        
        
The correct answer is 1: B new tech and 2:C we can tell by the way businesses are incorporating things like social media like how Wendys got more popular because of their sassy tweets
        
                    
             
        
        
        
Configure the Internet connection. 
Configure the wireless router. 
Enable NAT. 
Configure DHCP
Secure the SOHO network.
        
             
        
        
        
Answer:
import java.util.Scanner;
class Main {  
  public static void main(String args[]) { 
        Scanner scan = new Scanner(System.in);
        System.out.print("Enter a decimal value (0 to 15): ");
        int num = scan.nextInt();
        scan.close();
        
        if (num < 0 || num >15) {
            System.out.printf("%d is an invalid input\n", num);
        } else {
            System.out.printf("The hex value is %X\n", num);
        }
  } 
}
Explanation:
Hopefully this example will get you going for the other assignments.