Ask Question
19 June, 14:50

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".

+2
Answers (1)
  1. 19 June, 17:36
    0
    "" + firstName. charAt (0) + middleName. charAt (0) + lastName. charAt (0)
Know the Answer?
Not Sure About the Answer?
Get 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 & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers