C. Healing brush
That’s the answer
- To add new features
- To fix bugs
- To combat security vulnerabilities
- To keep customers engaged by showing the application is still maintained
Answer:
def insSort(arr):
ct=0;
for i in range(1, len(arr)):
key = arr[i]
j = i-1
while j >=0 and key < arr[j] :
arr[j+1] = arr[j]
j -= 1
ct=ct+1;
arr[j+1] = key
return arr,ct;
print(insSort([2,1]))
Output of the program is also attached.
Answer:Packet and circuit switching
Explanation: Packet switching is the technique through which the data is sent from the source to destination in the form of data packets on dynamic path.It is the time of connectionless switching and route generates for each packet.
Circuit switching is the switching technique having connected path for the sending and receiving of the data.They have well defined and established path for the transmission of data.
Other options are incorrect because they define the terms that are associated with the data that gets transmitted like bandwidth,transmission rate ,packet etc. These options are not the way in which data transmitted or switched.Thus, the correct option is packet and circuit switching.
It can be played around the world