Juniper Networks Interview Question
59 Interview Reviews |
Back to all Juniper Networks Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Member of Technical Staff IV at Juniper Networks:
write a programme to find number of bits set in an integer
See more for this Juniper Networks Member of Technical Staff IV Interview
Helpful Question?
Yes |
No
Inappropriate?
1 of 1 people found this helpful
by Aditya Makhija:
{
int count =0;
while(num)
{
num = num & (num-1);
count++;
}
return count;
}