Answer:
Explanation:
I am attaching the table as an image with updated table containing required information for the following WAN technologies.
T1/DS1 => Digital Signal 1 (T-Carrier 1),
T3/DS3 => Digital Signal 3 (T-Carrier 3),
OC3 (SONET) => Optical Carrier 3 (Synchronous Optical Networking),
Frame Relay,
ATM => Asynchronous Transfer Mode,
MPLS => Multi-protocol Label Switching,
EPL => Ethernet Private Line.
Although you have mentioned most of the information yourself, there were some wrong data in it. So I have updated them with correct information in the attached table.
<span>the three fundamental elements of an effective security program for information systems are Identification, Authentication and Authorization.The access control creates the user and assigns the rights to resources and authorization is giving permissions to the users to access the resources.The user who wants to enter the system should have a valid data t enter the system like password, fingerprint or any other type of recognition.</span>
There are three tunneling protocols. They are ISATAP, <span>teredo and 6TO4</span><span />
Go to panel and select stylesheet. Hope this helped:)
So here is the code in Python:
n = 0.00 #this is a float because there are some numbers that are decimals.
while n < 20: #n which is 0.00 and while it is lower than 20 if runs the code below
n = n + 1 #it will add 1 to n everything it runs the code.
k = n / 2 #it will divide whatever n is everytime by 2
print(str(n) + '/2: ') # it's printing the number it's on
print(k) # prints the answer for the n.
You can change n to add by any, make n any num instead of 0.00 and you can change the while condition from n < 20 to any other logical statement. If you want to get creative you can take 2 inputs for numbers and make one of them the starting number and other one is the ending number. Also make sure to make n a number lower than you starting point because if you set n as your starting point then it will skip it.