Programming Questions Write a program to create a string made of the first middle and last characterCreate a signal substring complete string and multiple stringsHow to access multiple stringsWrite a program to create a string and access it by negative indexingWrite a program to create a string and access the last 3 characters using negative indexingWrite a program to create a string and access the middle 3 characters using positive indexingWrite a program to create a string and access the first, third, and fifth charactersWrite a program to create a string and access the last 4 characters using positive indexingWrite a program to create a string and reverse to the string using the slice function Theory Questions What is a Slicing What is an indexingWhat is a positive indexing What is a negative indexingWhat is the slice functionHow to use the slicing function and Example