Ask Question
10 April, 02:12

Given three string variables that have been declared and given values, firstname, middlename, and lastname, write an expression whose value is the values of each these variables joined by a single space. so if firstname, middlename, and lastname, had the values "big", "bill", and "broonzy", the expression's value would be "big bill broonzy". alternatively, if firstname, middlename, and lastname, had the values "jerry", "lee", and "lewis", the expression's value would be "jerry lee lewis".

+3
Answers (1)
  1. 10 April, 02:46
    0
    "" + firstName. charAt (0) + middleName. charAt (0) + lastName. charAt (0)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Given three string variables that have been declared and given values, firstname, middlename, and lastname, write an expression whose value ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers