Multiple Choice
Look at the following pseudoocode and insert the missing statement:
Start
// Declare variables
Declare String lastName, firstName, fullName
// Input last and first names
Display "Enter your last name: "
Input lastName
Display "Enter your first name: "
Input firstName
// Concatenate names with space in between
____
// Display full name
Display "Your full name is " + fullName
Stop
A) fullName = firstName + lastName
B) fullName = firstName + " " + lastName
C) fullName = firstName, lastName
D) fullName = firstName, space, lastName
Correct Answer:

Verified
Correct Answer:
Verified
Q29: On a flowchart, assignment statements appear in
Q30: An advantage of structured programming is that
Q31: _ is a way of designing, writing,
Q32: The following statement is an example of
Q33: On a flowchart, a variable declaration is
Q35: Modular programming helps keep your main program
Q36: In the algorithm below, the Display statement
Q37: Flowcharts can be drawn to move from
Q38: The "stored programming" concept developed by John
Q39: Structures are easy to find and change: