Final answer:
The getFirstName pseudocode function prompts the user for their first name and returns it, while to convert str1 to uppercase and assign it to str2, you use the toUppercase() method in pseudocode.
Step-by-step explanation:
Pseudocode for getFirstName Function and String Conversion
To create a pseudocode function named getFirstName that prompts a user to enter their first name and returns it, you can use the following structure:
function getFirstName()
display "Please enter your first name: "
input firstName
return firstName
end function
For the second part of the question, here is how you can write a pseudocode statement to assign an all uppercase version of str1 to the variable str2:
str2 = str1.toUppercase()