Look at the following pseudoocode and insert the missing statement:Start// Declare variablesDeclare String lastName, firstName, fullName// Input last and first namesDisplay "Enter your last name: "Input lastNameDisplay "Enter your first name: "Input firstName// Concatenate names with space in between____// Display full nameDisplay "Your full name is " + fullNameStop

A. fullName = firstName + lastName
B. fullName = firstName + " " + lastName
C. fullName = firstName, lastName
D. fullName = firstName, space, lastName

Answer: B

Computer Science & Information Technology

You might also like to view...

When coding in VBA, comments are preceded by ________

A) an exclamation point B) a question mark C) an apostrophe D) a double quote

Computer Science & Information Technology

Briefly describe the L2TP protocol.

What will be an ideal response?

Computer Science & Information Technology