NetApp Interview Question Software Engineer / Developers

  • netapp-interview-questions
    0
    of 0 votes
    3
    Answers

    Add two 64 bit numbers on a 32 bit machine.

    - - on February 22, 2010 Report Duplicate | Flag
    NetApp Software Engineer / Developer Computer Architecture & Low Level



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

2 64bit num
int a[2], b[2], c[2];
c[1]=a[1]+b[1];
c[0]=a[0]+b[0];
if((c[0] < a[0] + b[0]) && a[0] > 0) ||
((c[0] > a[0] + b[0]) && a[0] < 0))
{
c[1}+=1;
}

- Ben on June 12, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Please Explain condition in if loop

- Raj on September 23, 2012 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

c[1}+=1; is fine when (c[0] < a[0] + b[0]) && a[0] > 0).
however why to increment c[1] by 1, when (c[0] > a[0] + b[0]) && a[0] < 0) ?

- bvgr on January 02, 2013 | Flag


Add a Comment
Name:

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

Books

is a comprehensive book walking you through every aspect of getting a job at a top tech company, while focuses on software engineering interviews.

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