Ask Question
17 October, 00:59

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

+5
Answers (1)
  1. 17 October, 01:25
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers