Answer:
length.
Explanation:
length variable determines the size of the array or the number of elements in the array.length variable is a final variable.It is a public field.It is only applicable for array it is not applicable for strings.It is also used to directly access the field member of the array.So we conclude that the answer is length.
Answer:
Explanation:
The following python code creates the multiplication table for 10 rows and 10 columns. This code uses nested for loops to traverse the table and print out the product of each multiplication. The image attached shows the output of the code.
for x in range(1, 11):
for y in range(1, 11):
z = x * y
print(z, end="\t")
print()
Answer:
12.1 seconds
Explanation:
Step 1:
Assuming the following data :
N: Size of packet = 30 Mb
T: Transmission rate = 10 Mbps
C: Speed of light in copper = 2 * 10^8 m/s
L: Length of link 5000 km
Step 2:
Calculation of the Transmission delay and the Propagation Delay
Transmission delay =
=
= 3s
Propagation delay =
=
= 0.025s
Step 3:
Calculation of the end-to -end delay
The end-to-end delay = 4*(Transmission Delay+Propagation Delay) = 4*(3+0.025) = 12.1 seconds
C. Importing a text file. Server manager is where you can remotely administer your servers. Answer a. isn't true because you don't need a web server running to be remotely managed. b. Isn't true because wscript is old technology and microsoft would most likely use powershell, and DHCP is used to hand out IP addresses.