Problem
Suppose you are given the following two variable, u and t.
u = 'university'
t = 'texas'
Uuse any combination of these four string operations:
a) String indexing, e.g., u[0]
b) String slicing, e.g., u[1:3]
c) String concatenation, +, e.g., u + t
d) Repetition, e.g., t*42
Create the following five string with variable name from answer1 to answer5.
a) Create pm and store this string in the variable answer1
b) Create sitypa and store this string in the variable answer2
c) Create tsei and store this string in the variable answer3
d) Create mamamamama and store this string in the variable answer4
e) Create river and store this string in the variable answer5