Interview Question for Software Engineers


Country: United States
Interview Type: Phone Interview




Comment hidden because of low score. Click to expand.
1
of 1 vote

public int solution(int N) {
		// write your code in Java SE 8
		String binary = Integer.toBinaryString(N);
		int compte = 0, comptegap = 0, result = 0;
		char[] value = binary.toCharArray();

		System.out.println(value);

		for (char v : value) {
			if (v == '1') {
				compte++;
			}

			if (v == '0') {

				if (compte == 2) {

					if (result < comptegap) {
						result = comptegap;
					}

					comptegap = 0;
				} else {
					result = 0;
				}

				comptegap++;
			}
		}

		return result;
	}

- abab April 16, 2020 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

We do following

public static int BinaryGap(int n)
{
	int maxGap = 0;
	int currentGap = 0;
	while(n > 0)
	{
		if(n % 2 == 0)
		{
			currentGap++;
			if(maxGap < currentGap)
			{
				maxGap = currentGap;
			}
		}
		else if(n % 2 == 1)
		{
			currentGap = 0;
		}
		n = n/2;
	}
	return maxGap;
}

- sonesh April 24, 2017 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

it wont work if you pass 20 rupees

- Mahesh July 28, 2019 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

In a loop, divide the number by 2. Keep count of the number of times, n%2==0 is found continuously

public int maxGap(int n){
	if(n<0){ return -1;}
	int maxgap = 0;
	int gap=0;
	while(n>0){
		if(n%2==0){
			gap++;
			if(gap>maxgap){ maxgap = gap; }
		} else {
			gap=0;
		}
	}
}

- Anonymous June 09, 2017 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

ujyujy

- huhjujh5y6uhj March 16, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

public int solution(int N) {
String binary = Integer.toBinaryString(N);
int compte = 0, comptegap = 0, result = 0;
char[] value = binary.toCharArray();

System.out.println(value);

for (char v : value) {
if (v == '1') {
compte++;
}

if (v == '0') {

if (compte == 2) {

if (result < comptegap) {
result = comptegap;
}

comptegap = 0;
} else {
result = 0;
}

comptegap++;
}
}

return result;
}

- abab April 16, 2020 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More