Instructions: 1. Do this assignment in pair. 2. For each question, you are required to produce video(s) that present(s)
Posted: Sun Jul 03, 2022 12:02 pm
question, you are required to produce video(s) that present(s) the followings: a. synthesize the problem b. design suitable algorithm (either pseudocode or flowchart) c. write the program, compile and run the program. 3. Apply your own creativity on how to make the viewers understand the explanation presented in the video(s). 4. The submission deadline of this assignment is 3 July 2022. 5. For the submission, each pair needs to: a. Upload the video in OneDrive and put the link in ULearn. b. Upload source file (CPP) in ULearn. Question 1 Permutation refers to the act of rearranging or permuting some or all the members of a set into some sequence or order. A program is needed to compute the number of possible permutations for a given set. The formula for the calculation involved is as follows: N! (N-k)! where N is the total number of members of the set, k is the number of members to be rearranged, N! denotes the factorial of N, and (N-k)! denotes the factorial of N-k. [NOTE: Apply loop]
Instructions: 1. Do this assignment in pair. 2. For each