234k views
5 votes
Design a pseudocode function named getFirstName that asks the user to enter their first name, and returns it. 6. Assume that a program has two String variables named str1 and str2. Write a pseudocode statement that assigns an all uppercase version of str 1 to the str 2 variable.

User SanitLee
by
8.2k points

1 Answer

4 votes

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()

User Artal
by
7.6k points