Answer:
First, you need to start the OSPF process by executing the command:
<em>Router (config)# router ospf {process-ID#}</em>
Then, you have to instruct the router to advertise the networks that are directly linked to it by entering this network command with the area ID number for that network:
Router (config-router)# network {192.168.10.0} {255.255.255.0} area {0}
Answer:
- policy_num = int(input("Enter policy number: "))
- lastName = input("Enter last name: ")
- firstName = input("Enter first name: ")
- premiumDate = input("Enter premius due date (mm/dd/yyyy): ")
- numAcc = int(input("Enter number of driver accident in the past three years: "))
-
- if(policy_num <1000 or policy_num > 9999):
- policy_num = 0
-
- dateComp = premiumDate.split("/")
- month = int(dateComp[0])
- day = int(dateComp[1])
- year = int(dateComp[2])
-
- if(month < 1 or month > 12):
- month = 0
- day = 0
- year = 0
- else:
- if(month == 1 or month == 3 or month == 5 or month == 7 or month == 8 or month == 10 or month == 12):
- if(day < 1 or day > 31):
- month = 0
- day = 0
- year = 0
- elif(month == 4 or month == 6 or month == 9 or month == 11):
- if(day <1 or day > 30):
- month = 0
- day = 0
- year = 0
- elif(month == 2):
- if(day < 1 or day > 29):
- month = 0
- day = 0
- year = 0
-
- print("Policy number: " + str(policy_num))
- print("Last name: " + lastName)
- print("First name: " + firstName)
- print("Premium Date: " + str(month) + "/" + str(day) + "/" + str(year))
- print("Number of driver accidentin the last three years: " + str(numAcc))
Explanation:
The solution code is written in Python 3.
Firstly use input function to prompt user to enter all the necessary insurance policy data (Line 1 - 5).
Next create an if statement to validate the input policy number. If the policy number is not within the range of 1000 - 9999, set the policy number to zero (Line 7 -8).
Next, split the input premium date into month, day and year (Line 10 -13). It is followed by checking the month if it is between 1 - 12. If not, set the month, day and year to zero (Line 15 - 18). Otherwise the program will proceed to validate the month based on the maximum and minimum number of days for a particular month (Line 20 - 34). If the day is out of range, set month, day and year to zero.
Lastly, use print function to display the policy data (Line 36 - 40).
It depends solely on how much you will use it. For example, laser printers are more suitable for offices, schools, and environments, where the printer is used almost constantly. If it's used a lot, you're probably looking at a laser printer, since the cartridges have a slightly higher price, but a much higher yield. If you can't afford a laser printer, and you're only going to use it at home, you're probably looking at an inkjet. If you need to print off something for school, ask your teacher, or someone that works at your school. Some secondary/high schools might allow you to use their printers at a lower price
Answer:#include <iostream>
using namespace std;
int main()
{
int factorial = 1;
for (int i = 5; i > 0; i--) {
factorial = factorial * i;
}
cout<<factorial;
return 0;
}
Explanation: