Amazon Interview Question for Software Engineers


Country: United States
Interview Type: Phone Interview




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

Make your class and instance variable as final, your class will be immutable.

public final class Immutable {
	private final String s;
	
	public Immutable(String a){
		s = a;
	}

}

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

Don't provide public methods that will change your object.
In case of modification, return a new instance.
Prefer to declare your variables as final.
Process everything needed in the constructor.

Example:

public class DoTheMath {
	private int x;
	private int z;

	public DoTheMath(int N) {
		calculate(N);
	}

	private void calculate(int N) {
		// code code code
	}

	public int getX() {
		return this.x;
	}

	public int getZ() {
		return this.z;
	}
}

- Felipe Cerqueira February 09, 2017 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

public final class ImmutableDemo{
private final String panNumber;

public ImmutableDemo(String panNumber){
this.panNumber = panNumber;
}

public getPanumber(){
return panNumber
}
}

- Anonymous February 10, 2017 | 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