Bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
        
             
        
        
        
The answer is D
Explanation: none
        
                    
             
        
        
        
Question:
Write one for loop to print out each element of the list several_things. Then, write another for loop to print out the TYPE of each element of the list several_things. 
Answer:
The solution in python is as follows:
for element in several_things:
     print(element)
    
for element in several_things:
     print(type(element))
Explanation:
The solution assumes that the list several_things has already been initialized.
So, the rest of the code is explained as follows:
This line iterates through the list, several_things
for element in several_things:
This line prints each element
     print(element)
This line iterates through the list, several_things for the second time    
for element in several_things:
This line prints the type of each element
     print(type(element))
 
        
             
        
        
        
Answer:
True
Explanation:
The word processor used to be the only office machine in the year 1960s, that combined the keyboard text-entry and various printing functions of an electric typewriter with the recording memory. And this recording unit was a tape or a floppy disk, with the simplest of processor applied for text editing. Hence, the above statement that the early word processors ran on the devices that look like digital is true.
 
        
                    
             
        
        
        
IP addresses provide a unique number for identifying devices that send and receive information on the Internet
-scav