Answer:
The program in Python is as follows:
word = input("Word: ")
if len(word) < 5:
    print("At least 5 characters")
else:
    pal = word[0:5]
    word = word[0:4]
    word = word[::-1]
    pal+=word
    print(pal)
Explanation:
This gets the word from the user
word = input("Word: ")
This checks if the length of the word is less than 5.
if len(word) < 5:
If yes, this tells the user that at least 5 characters is needed
    print("At least 5 characters")
If otherwise
else:
This extracts the first 5 characters of the word into variable named pal
    pal = word[0:5]
This extracts the first 5 characters of the word into variable named word
    word = word[0:4]
This reverses variable word
    word = word[::-1]
This concatenates pal and word
    pal+=word
This prints the generated palindrome
    print(pal)
 
        
             
        
        
        
Answer:
Check explanation.
Explanation:
So, i will be going supporting positive effect of how the reshaping of of the media has affected the film industry. Since brainly do not support me to include links to websites and videos I will only be sharing my opinions on the subject. 
One of the ways the media is been reshaped is through the platform known as the Social Networking Sites. This platform has helped people to create an account with them, create content on their sites and share this content. With the development of this platform the film industry can put their content on this platform and show it to the world. On platforms like this, the films can be viewed and shared to many individuals. 
These Platforms are been employed by film makers/industry to disseminate their content and also for the generation of revenue. 
 
        
             
        
        
        
Here's a solution in node.js. Can be easily transcribed to other languages:
var paint_per_sqf = 1/350;
var wall_area = 250.0;
var gallons_paint = wall_area * paint_per_sqf;
console.log(wall_area.toFixed(1) + " square feet wall will need:");
console.log(gallons_paint.toFixed(12) + " gallons of paint");
        
             
        
        
        
Magnetic north is the north a compass points in the direction of. True north, on the other hand, is north based on the earth's axis.
        
             
        
        
        
Answer:
Raster Graphic is a bitmap. They are basically a grid of small pixels that make an image.