Answer:
1. Pseudo Code:
START
ENTER STRING 1
INPUT STRING 1
ENTER STRING 2
INPUT STRING2
PRINT STRING 1 + STRING 2
STOP
1. FILE (Python)
Please add below code in the file:
# name:
# Date: 13-10-2020
# Description: This program is about entering two strings and printing them together
def main():
a = input("string 1:")
b = input("String 2:")
print(a + b)
main()
3. Project Mortem Review:
1. Which IDE have you used?
Ans: Pycharm
2. Where is a file stored in Windows by default?
Ans: c://users/username/PycharmProjects/All files
3. Did you encounter any error?
No, the project ran successfully
4. What was the purpose of the project?
To learn how to concatenate two strings
5. Will you innovate more on this, and what?
Yes, I will split it and make a dictionary with the meaning of each word, and I will use an Oxford university dictionary library to pick the meaning from.
Explanation:
Please check the answer section.