A program that repeatedly prompts a user for integer numbers :
biggest = none
smallest = none
while True:
 input = raw_input(“Enter a number:”)
 if(input == “done” break
 try:
  number = float(inp)
  except ValueError:
  print “Please enter only numbers”
 else
  if smallest is None:
  	smallest = number;
  	biggest = number;
 elif number < smallest:
  smallest = number
 elif num > largest:
  largest = number
Print “Greatest is “, biggest
Print “Smallest is”, smallest
In this program an input is obtained, if it is equal to the word “done”, then the program stops b printing greatest and smallest number in the given input.
If invalid inputs are given then user is prompted to enter valid number. Otherwise the value of smallest and greatest are calculated according to the input using if-else construct.
 
        
             
        
        
        
Answer: A) Who will use the database?
 
        
                    
             
        
        
        
Answer:
Run directory services
Explanation:
LDAP (Lightweight Directory Access Protocol) is an open protocol used to access some information, information that is stored in a network, the information is organized hierarchical structure, we could find some data like names, directories, and telephone numbers.
With other options, we can find DHCP to assign IP addresses and to resolve IP addresses to host names, we have the DNS.
 
        
             
        
        
        
Answer:
One of the biggest changes for businesses is the communication technology enabled by the internet. The way people communicate with one another, share files, make purchases, and collaborate has completely shifted since the internet became widespread.
Explanation:
 
        
             
        
        
        
There are ways to break into the boot cycle of every machine, you could use one of them. Hold down modifier key[s] so that it boots differently or you may get a menu to select boot options.
A specific answer is OS/firmware dependent.