22 bits
-----------------------------------
        
             
        
        
        
<span>Which is the primary use of a word processor? 
</span>
create, edit, format, and print text-based documents
------------------------------------------------------------------------------------------------
Hope This Helps :)
P.S
If you could mark me as brainiest that would be great! :D
        
             
        
        
        
C.) New discoveries make the current model inaccurate. Since
science is all about observation and experimentation, it is logical that
whenever new findings are gathered, scientific models must be modified to adapt
to the information. As new ideas and concepts are uncovered, models should be
updated to make them correct.
 
        
                    
             
        
        
        
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.