Answer:
The solution code is written in C++
Explanation:
All the missing codes are highlighted in the code above (Line 4, 6, 8-9).
The getline() method is to get a string of name from user. The input string will be assigned to variable name. (Line 4)
Next, we use cin to get an integer input for variable age (Line 6).
At last, the output instruction to print out the name and age are written in Line 8 - 9.