Answer: 
The answer is "Option A". 
Explanation: 
In the given question the method toString() is used that converts any value into a string. In this code two print method is used, that can be described as follows: 
- In the first method, object1 is created, which is used to print all object values. 
- In the second method, object1 uses the toString() method, which converts all values into a string, that's why the answer to this question is "True". 
 
        
             
        
        
        
Answer:
A. Do your own research including reading articles related to the same topic.
Explanation:
To confirm online information that is not made by reputable experts, professionals, journals, or websites, it is always recommended to cross-check such information carefully. To do that is to make research on the same topic and confirm if the actual information is the same.
Hence, in this case, the correct answer is "Do your own research including reading articles related to the same topic."
 
        
             
        
        
        
Answer: B and C
Explanation: Analyze the audience
                       Identify the problem
 
        
             
        
        
        
Answer:
True
Explanation:
Building your personal brand requires extreme care when it comes to social media presence. In the age of internet there is nothing hidden, so whatever you post or comment will be seen by your audience and it can go in either way. It can either make your brand or break it. It is of utmost importance to leave a pleasant and positive impact on your audience. One should not indulge in inappropriate or controversial debates and try to avoid being too personal on social media.  
 
        
             
        
        
        
Answer:
def scramble(s):
    if len(s) % 2 == 1:
        index = int(len(s)//2)
    else:
        index = int(len(s)/2)
    
    return s[index:] + s[:index]
Explanation:
Create a function called scramble that takes one parameter, s
Check the length of the s using len function. If the length is odd, set the index as the floor of the length/2. Otherwise, set the index as length/2. Use index value to slice the s as two halves
Return the second half of the s and the second half of the s using slice notation (s[index:] represents the characters from half of the s to the end, s[:index] represents the characters from begining to the half of the s)