nums = input("Enter your numbers: ")
lst = nums.split()
new_lst = ([])
for i in lst:
    if int(i) >= 0:
        new_lst.append(int(i))
new_lst.sort()
for x in new_lst:
    print(x, end=" ")
The above code is in case the user enters the numbers.
def func(lst):
    lst.sort()
    for i in lst:
        if i >=0:
            print(i, end=" ")
lst = ([10,-7, 4, 39, -6, 12, 2])
func(lst)
The above code is in case you must input the numbers manually via a function. 
I hope this helps!
 
        
             
        
        
        
You can easily find and changed the data by using lookup table. You can also find the data within few seconds.
 
        
                    
             
        
        
        
Answer: 
  A class is an good representation of the abstract data type as it is represented independently. For implementing a class, it is use to specify the interface for an abstract class. 
Class is one of the type of abstract data type for the objects that whose behavior is basically define by the set of operations and values. It is known as abstract as, it provide an implementation independently. 
When the class is using in an abstract data type, then it refers as hidden representation of the data. In this modern era, class is use for the implementation of the abstract data type. 
 
        
             
        
        
        
Answer:
A: Radio waves.
Explanation:
Computers use short-wave radio in order to communicate with devices in it's immediate vicinity.