- To add new features
- To fix bugs
- To combat security vulnerabilities
- To keep customers engaged by showing the application is still maintained
When coal is burned it releases, 2: Carbon Dioxide.
This is called Real time processing. A Transaction Processing System (TPS) is a kind of data framework that gathers, stores, adjusts and recovers the information exchanges of an undertaking. Exchange handling frameworks additionally endeavor to give unsurprising reaction times to demands, despite the fact that this is not as basic with respect to continuous frameworks.
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).
When a blocked number tries to send you a text message, it won’t go
through, and they will likely never see the “delivered” note. On your
end, you’ll see nothing at all. As far as phone calls are concerned, a
blocked call goes directly to voice mail. On your end, you’ll get a
special “blocked messages” folder in your voice mail inbox if they leave
a message, but you won’t get a notification they called.