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.
Answer:
2. Software
Explanation:
Software is an app
Hardware is the computer or cell phone or mobile phone
toppr
Answer:
an enterprise architecture
Explanation:
Based on the information provided within the question it can be said that in this scenario it seems that GenXTech is creating an enterprise architecture. This is a blueprint made for a company that illustrates and defines all the finer details regarding the structure and operation of an organization, as well as where the organization should be heading in order to achieve the business goals that have already been set.
Answer:
1, 4, 7
Explanation:
The instruction in the question can be represented as:
for i in range(1,10,3):
print i
What the above code does is that:
It starts printing the value of i from 1
Increment by 3
Then stop printing at 9 (i.e.. 10 - 1)
So: The sequence is as follows
Print 1
Add 3, to give 4
Print 4
Add 3, to give 7
Print 7
Add 3, to give 10 (10 > 10 - 1).
So, it stops execution.