Reference no: EM132395781 
                                                                               
                                       
Assignment
1. Write a program that prints your name and address to the screen. Be sure to put carriage returns in the appropriate places and use appropriate sentence capitalisation. Compile your program, ensuring there are no errors and then run it.
2. Write a second program that accepts two names, the user's first and last names. With the data read in, display a welcome message to the user. Compile your program, ensuring there are no errors and then run it.
3. Write a third program that prints a (clean) joke to the screen. Accept the first name and last name from the screen and then tell the user you hope they liked your joke. Compile your program, ensuring there are no errors and then run it.
4. Write and pseudocode to print your favourite recipe.
5. Write simple pseudocode that solves the problem of getting ready in the morning to attend work or the university
6. Write some more advanced pseudocode that includes a selection based on a condition for getting ready in the morning to attend work or the university. An example test might be use the iron to press your clothes.(Hint: Use If statement)
7. Finish your pseudocode now with an iteration of your choosing. An example, is taking out clothes from the wardrobe until you like it in the mirror/ if you cannot think of one is cycle through your outfits until you find the one you think looks best(Hint : Use while/Do while loop)
8. Write a pseudocode to calculate the factorial of a number.
9. Write a program to input any three number and add, subtract, multiply and divide the numbers. Also calculate the average of the numbers.