Mu sigma Company Logical Reasoning Logical Sequences

Below is a pseudo code Read x
While(x < 60)
write x
x = x*3
The last number in the sequence is 54, what has the user entered as the initial value of x

Read Solution (Total 20)

Mu sigma Other Question

Set x1 to 1;
Set x2 to 1;
While(x1 < 10)
Set x2 = x2 + x1 + 1;
Set x1 = x1 + 1;
write x2
(a) Arithmetic progression
(b) Tribonacci series
(c) Fibonacci series
(d) Triangular numbers