The format that you will use on your works cited page when the entry is longer than one line is to second and all subsequent lines need to be indented half an inch.
<h3>What kind of formatting is used on a works cited page?</h3>
In the formatting of the Works on Cited page, the layout is that "Title the page Works Cited, do put it on the center and in plain text (no italics, bold, or underline). etc.
Note that the format to use when  your works cited page  entry is more than one line is to second and all subsequent lines need to be indented half an inch.
Learn more about cited page from
brainly.com/question/1382377
 
        
             
        
        
        
Answer:
A. Create a profile that has permissions to the VIP information and assign it to the VIP community users.
Explanation:
Salesforce is a customer rapport management platform that is based on the cloud. There are program applications for sales, marketing and services. The platforms are utilized to achieve an enhanced relationship with customers because they have a better understanding the need of their customers and how to solve their problems by organization and managing their customers' information and interactions.
VIP users will get access to the information they want when there are permissions set for the VIP users. VIP information will be given to the VIP customers in order for them to carry out activities that they need to do to execute their job.
 
        
             
        
        
        
Answer:
(E) 
Explanation:
I think it's E because it's the only answer that makes sense I guess!
 
        
                    
             
        
        
        
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)