Rackspace Interview Question
70 Interview Reviews |
Back to all Rackspace Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Linux Systems Administrator at Rackspace:
Can you write the code to generate the Fibonacci sequence?
See more for this Rackspace Linux Systems Administrator Interview
Helpful Question?
Yes |
No
Inappropriate?
Answers & Comments (2)
Thank you so much for posting this. I am going to have interview with Rack space for
Linux system administrator Position.
Can you please provide some question that has been asked by them so it will help me prepare for the interview.
Thanks,
Vishal
Helpful Answer?
Yes |
No
Inappropriate?
To comment on this
question,
Sign In with Facebook or
Sign Up



0 of 0 people found this helpful
by Dan:
$p = 0;
$n = 1;
$t = 0;
for ($i = 0; $i < 50; $i++) {
printf "%d ", $p;
$t = $p + $n;
$p = $n; $n = $t;
}