I'd say the 
Arrange tab
Sizing and moving fields in design view can sometimes be
time consuming. Be that as it may, we can always use the tab order dialog box
to perform this operation. To do so, we select the labels and fields in
question, proceed to the Arrange tab, sizing and ordering group and then click
on the Align button.
 
        
        
        
Answer:
gpupdate
Explanation:
My explanation was previously removed.
 
        
             
        
        
        
I believe the answer is A
        
             
        
        
        
Answer:
sendObject(John_Doe);
Explanation:
The above code has been written in Java. 
Since the calling class is the same that declares it, to invoke the method, simply call its name with its argument(s) in a pair parentheses. The name of the method is "sendObject" and its argument is a reference to an object of type Customer saved in a variable called "John_Doe". This can be written as follows:
sendObject(John_Doe);
Hope this helps!