You need to configure a server that is on the subnet 192.168.19.24/29. The router has the first available host address. Which of the following should you assign to the server if it is to be issued the next available address?

A) 192.168.19.0 / 255.255.255.0
B) 192.168.19.26 / 255.255.255.248
C) 192.168.19.31 / 255.255.255.248
D) 192.168.19.34 / 255.255.255.240

B
Explanation: B) The /29, or 255.255.255.248, subnet mask provides 5 subnet bits (25 = 32 ) and 3 host bits (23 - 2 = 6). The 192.168.19.24/29 network has a network address of 192.168.19.24 and a broadcast address of 192.168.1.31 with the addresses in between being the available host addresses starting at 192.168.19.25. Because the router is assigned the first address, the second address available is 192.168.19.26/29.

Computer Science & Information Technology

You might also like to view...

In Excel, the applied theme has a set of complimentary ________, which are defined sets of formatting characteristics, such as fonts, font sizes, number formats, cell borders, and cell shading

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is the output of the following code?public class Rectangle{ // Instance variables private double length; private double width; // Getters and setters for length and width public double getLength(){ return length; } public void setLength(double length){ this.length = checkData(length); } public double getWidth(){ return width; } public void setWidth(double width){ this.width = checkData(width); } // Constructor public Rectangle(double length, double width){ this.length = checkData(length); this.width = checkData(width); } // Error-checking method public double checkData(double val){ // If value is negative, make it positive if(val < 0) val = val * -1; return val; } public double getArea(){ return length * width; } public double getPerimeter(){ return 2 * (length + width); } public

String getData(){ return "Length: " + this.length + "\nWidth: " + this.width + "\nArea: " + this.getArea() + "\nPerimeter: " + this.getPerimeter(); }}public class MakeRectangles{ public static void main(String[] args){ Rectangle rect1 = new Rectangle(-4.0, 2.0); Rectangle rect2 = new Rectangle(8.0, 6.0); System.out.println("Rectangle 1:\n" + rect1.getData()); System.out.println("Rectangle 2:\n" + rect2.getData()); }} A. Rectangle 1: Length: 4.0 Width: 2.0 Area: 8.0 Perimeter: 12.0 Rectangle 2: Length: 8.0 Width: 6.0 Area: 48.0 Perimeter: 28.0 B. Rectangle 1: Length: -4.0 Width: 2.0 Area: -8.0 Perimeter: -12.0 Rectangle 2: Length: 8.0 Width: 6.0 Area: 48.0 Perimeter: 28.0 C. Rectangle 1: Length: -4.0 Width: 2.0 Area: -8.0 Perimeter: -4.0 Rectangle 2: Length: 8.0 Width: 6.0 Area: 48.0 Perimeter: 28.0 D. Rectangle 1: Length: -4.0 Width: 2.0 Area: 8.0 Perimeter: 12.0 Rectangle 2: Length: 8.0 Width: 6.0 Area: 48.0 Perimeter: 28.0

Computer Science & Information Technology