InterviewSolution
Saved Bookmarks
| 1. |
Write a single statement that concatenates the words ‘Hello’ and ‘World’ and assign it in a variable named greeting. |
|
Answer» greeting := ‘Hello’ || ‘World’; |
|