Accenture Software Engineering Practice Question
Rearrange the pseudo-code for multiplying two given numbers, Choose the correct option from the below. 1 BEGIN 2 result <- number1 * number2 3 PRINT result 4 READ number 1 and number 2 5 DECLARE variables number1, number2, result 6 END a. 1 4 5 2 3 6 b. 1 4 5 3 2 6 c. 1 5 4 3 2 6 d. 1 5 4 2 3 6Answer options
A
1 4 5 2 3 6
B
1 4 5 3 2 6
C
1 5 4 3 2 6
D
1 5 4 2 3 6
Correct answer: 1 5 4 3 2 6
Explanation
Correct answer: 1 5 4 3 2 6.