Answer:
name1+","+name2+","+name3
Explanation:
Given
name1, name2 and name3
Required
Concatenate, separated by comma (,)
To concatenate, we simply use the + operator.
So, the expression is:
name1+","+name2+","+name3
Answer:
(a). as the combination of IP address and port number to allow an application within a computer to set up a connection with another application in another computer without ambiguity.
Explanation:
The explanation is in the answer.
Answer:
screening
Explanation:
Packet screening also known as packet filtering wall is a package that works at the network layer of the OSI model. It screens IP addresses and packet options and its firewall option allows it to block or allow access into the computer, based on what it has detected.
To achieve this, it can employ the dynamic-packet filtering where ports are opened when it is really necessary and then closed. Static-packet filtering in which rules are set manually and the stateful-paket filtering where packets have to move through some sequence.
It isn’t people but im really confused. I think its A but dont come at me if its wrong
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).