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))
 
        
             
        
        
        
The answer to this is B=MODE(A1:A65)
        
             
        
        
        
One rupee is about .015 of an American dollar. So multiply with how ever many rupee's she had.
        
             
        
        
        
Answer:
See explanation
Explanation:
The question would be best answered if there are list of options.
However, the question is still answerable.
When there's a need to change the value of the argument passed into a function, what you do is that you first pass the argument into a parameter, then you change the value.
Take for instance, the following code segment:.
int changeArg(int n){
int newhange = n;
newhange++;
return newhange;
}
The above takes in n as the argument
Then it passes the value of n into a reference parameter, newchange
And lastly, the value is altered.