NVIDIA Interview Question for Software Engineer / Developers






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

The 1st solution is incomplete. It's correct that we have to AND with something. But that something depends on which byte we are actually looking for. Oxff is only once case.

- Anonymous December 01, 2009 | Flag Reply
Comment hidden because of low score. Click to expand.
1
of 3 vote

typecast to char and print it

- Anonymous February 19, 2011 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Load the word and then do a bitwise and with 0xff is how the compiler does it.

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

dude CUNOMAD! were you asked all these Qs?! you seem to have posted atleast 30 Qs here. appreciate it ofcourse. but wondering if you were asked all these or its your compilation of could-be-asked questions...

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

I think it's normal to be asked up to 30 questions during interview... the interview lasts very long though

- Anonymous November 24, 2009 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

#include <stdio.h>
int main()
{
int x=256;
char *p=&x;
printf("%d",*p++);
printf("%d",*p++);
printf("%d",*p++);
printf("%d",*p);
}

- pr6989 September 14, 2012 | 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