Taking the input as a string, slicing it with a space as the delimiter, turning the divided portion into an integer, and then appending to the list.
<h3>
Explanation:</h3>
def selection_sort_descend_trace(numbers):
i=len(numbers)
print("Output: ")
for num in range(0,i-1):# traversing from 0 to N-2, total N-1 iterations
val=numbers[num]
start=num+1
end=i
t=0
for j in range(start,end):
if(val<numbers[j]):
remember=j
val=numbers[j]
t=1
if(t==1):# swaping onlf if greater number is available
temp=numbers[num]
numbers[num]=val
numbers[remember]=temp
for p in range(i):# printing
print(numbers[p],end=' ')
print("\n")
if __name__ == "__main__":
print("Enter the integers separated by space: ")
numbers=[int(x) for x in input().split(' ')]
selection_sort_descend_trace(numbers)
For further details about the explanation, click here:
brainly.com/question/15728245
#SPJ1
To be honest I'm not sure but I'd say B,C
Answer:
RTMC pro, HTML server-sent and Java Software Development Kit
Explanation:
<u>RTMC pro</u>: The setup of RTMC pro is done automatically and there is provision of several elements to upload and store data on the server using screens. Screens are usually saved as files and then integrated to an internal or external server.
<u>HTML server-sent</u> : This is a way for webpages to communicate with the webserver. In this method, for ever HTML page there is an associated script present on the server side that will continuously provide realtime data update. This scrip will have to be configured with the data you want to update.
<u>Java Software Development Kit</u> : JAVA SDK is used to build software/applications on Java. This permits programmers to develop applications or applets to perform data updating on the servers. The developped applets can be used with internal servers as well as third party servers.
For latest models of Pocket Digital Assistant or handheld devices, a touch screen input with or without stylus is the main input hardware/device.
For the older models, keyboard or personalized keyboard is the input hardware for the device.