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.
 
        
             
        
        
        
Network media is most important
        
             
        
        
        
Answer:
Answer is - cell, - column, - string value
Explanation:
- <em>Cell - this is often referred to as the intersection of a single row and column.  </em>
 - <em>Column - this is a group of cells which are represented vertically.  </em>
 - <em>String - these are values that are inside the cell which are represented through texts or group of letters including acceptable symbols and characters.</em>
 
 
        
                    
             
        
        
        
Answer:
Question was incomplete and continued the question 
For each of the following scenarios, which of these choices would be best? Explain your answer.
BST
Sorted Array
Un-sorted Array
a) The records are guaranteed to arrive already sorted from lowest to highest (i.e., whenever a record is inserted, its key value will always be greater than that of the last record inserted). A total of 1000 inserts will be interspersed with 1000 searches.
b) The records arrive with values having a uniform random distribution (so the BST is likely to be well balanced). 1,000,000 insertions are performed, followed by 10 searches.
Explanation:
Answer for a: Un-sorted array or Un-sorted linked list : as mentioned in the question itself that the records are arriving in the sorted order and search will not be O(log n) and insert will be not be O(n). 
Answer for b : Un-sorted array or Un-sorted linkedlist : Number of the items to be inserted is already known which is 1,000,000 but it is very high and at the same time search is low. Unsorted array or Unsorted linked list will be best option here. 
 
        
             
        
        
        
Answer: data security
Explanation:
The company's authentication protocols and data encryption measures denotes data security.
Data security simply means protecting unauthorized people from having access to a particular data. This is done to prevent unauthorized access of important information or to prevent fraud. Some of the data security measures include data encryption, tokenization, hashing, etc.