Answer:
C. 220.100.100.45 to 220.100.100.46
Explanation:
The Classless IP subnetting of 220.100.100.0 begins from the fourth octet of the IP address. To get 45 subnet mask, it uses 6 bits from the fourth octet, which approximately give 64 subnets, while the remaining 2 bits are used for host IP addressing.
The useable host IP addresses are gotten from the formula '
-2', with n=2 bits.
useable host IP addresses = 2^2 - 2 = 2 addresses per subnet.
While the 12th subnet is 12 x 2^2 = 44.
This means that the 12th subnet mask starts with 220.100.100.44 (as the network address) and ends with 220.100.100.47 as broadcast IP address, while '.45' and '.46' are the assignable addresses of the subnet.
If you observe closely, you may see that these stars are shown only against some slides and not all of them.
The stars are just an indication that the particular slide has custom animation. That was you can quickly see at a glance if a slide has content that is animated.
The same star symbol is also shown when the slide itself has any slide transition set.
Answer:
1. List the fields needed to gain information
2. Break down the date into smaller parts
3. identify the fields holding stored data
4.distribute the fields into tables by subject
5. identify the common fields for linking tables
Explanation:
edge 2021
All modern cd-r drives are writable, such that you can go back and burn additional data onto the cd-r disc until the disc is full.
Answer:
Answered below
Explanation:
Scanner n = new Scanner(System.in);
System.out.print("Enter number of guests: ");
int numOfGuests = n.nextline();
double pricePerGuest = 35.0;
double totalAmount = numOfGuests * pricePerGuest;
String event = " ";
if ( numOfGuests >= 50){
event = "Large event";
}else{
event = "small event";
}
System.out.print(numOfGuests);
System.out.println(pricePerGuest);
System.out.println( totalAmount);
System.out.println(event);