Answer:
A, C, D and E
Explanation:
An intranet is synonymous to a private LAN or WAN network but in contrast to the extranet or internet. Resources are retrieved and/ or shared within devices in the private network. It uses the internet protocol suite model of networking for communication, but also uses private IP addresses, which are not routable on the internet.
The communication between devices can be a peer to peer connection or client-server connection, using the mainframe computer technologies as the dedicated servers of the network.
Answer:
Python code is given below
Explanation:
# create an empty array
arr = []
# loop 5 times
for i in range( 0 , 5 ):
x = float(input('Enter a number : '))
# add x to arr
arr.append( x )
sum = 0
# find the sum of all elements in arr
for x in arr:
sum += x
# calculate average
average = sum / len(arr)
print('\n%15s %15s\n' %('Original Value' , 'Interest Value'))
for Original_value in arr:
# calculate interesr value
Interest_Value = Original_value * 0.2
print('%10f %15f' %( Original_value , Interest_Value ))
print('\nTotal :', sum)
print('Average :', average)
print('Maximum :', max(arr))
print('Miniimum :', min(arr))
Answer:
The answer is "Videoconferencing"
Explanation:
Video conferencing is a process, that uses communicating devices to convey sound and video information. It is used to involves the performances and meeting more than two members at various sites.
- It enables the users to meet a person face to face by different locations, and avoid moving to a single site.
- This type of communication is used everywhere in the world, it saves the time of highly salaried employees, and provides the usage of different sites in the same organization.