Akamai Interview Question for Software Engineer / Developers






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

I didn't understand this question. But optimum java code is the one that doesn't rely that doesn't crash due to memory issues. So, make sure that you use string objects instead of string etc..

- Messi April 13, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

reusability/modularity, data/functional abstraction, complete code coverage, fail-safe (crashes safely.. no one can totally avoid crashing).. most imp of all.. meet the user requirements..
add more if needed

- Anonymous May 06, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

To add: Takes care of garbage collection.

- Anonymous August 04, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Time complexity is not a feature of java code but of algorithms.
Space complexity you cannot control in java because you don't know what it is doing behind the scenes.
Eg. in C++, if you just have 8B space,you could do a int x = new int(23); int y = new int(30); delete x; int p = new int...
i mean that memory is totally in user's control in C++, but not in java.

- Roxanne October 28, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

optimum java code may be bytecode...its machine independent(can be run on any machine having jvm), secured, robust etc

- vinay.patil185@gmail.com August 10, 2011 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Optimum Java code is something which does have best code practises, Avoid pre instantiation of classes, unnecessary variables, low complexity alogorithms, dead code avoidings , all that...

- Venkatesh //Consultant HP March 18, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

I will add a few more

Time Complexity
Space Complexity
concurrency

- Anonymous August 10, 2010 | 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