Assume that a program has two String variables named str1 and str2. Write a pseudocode, flow chart and IPO chart of the statement that assigns an all uppercase version of str1 to the str2 variable.
pseudocode:
step1: first define str1 and str2 and intialize str1 with some string
step2: iterate over the str1 and convert str1 to all uppercase version and assign to str2
step3: finally print the str2 which only contain uppercase version only
flowchart:
#IPO chart
input: str1
process: str2 contain uppercase version of str1
output:str2
Get Answers For Free
Most questions answered within 1 hours.