Topic — Add New » Posts Last Poster Freshness
Amazon Interview Questions about Designing System 2 vikram.kuruguntla 6 days

Customers want to buy some products but the products are out of stock, design a system to notify them when those products are again available.

Design, display a customer's friends list who also bought the product he is curently looking at.

Design a DVD rental system.

Facebook Interview 2 under_score 1 week

We are starting preparations for Hacker Cup 2013 really early. Our first step is to prepare billboards to advertise the contest. We have text for hundreds of billboards, but we need your help to design them.

The billboards are of different sizes, but are all rectangular. The billboard widths and heights are all integers. We will supply you with the size in inches and the text we want printed. We want you to tell us how large we can print the text, such that it fits on the billboard wit...

Facebook Interview 1 ricky 2 weeks

We are starting preparations for Hacker Cup 2013 really early. Our first step is to prepare billboards to advertise the contest. We have text for hundreds of billboards, but we need your help to design them.

The billboards are of different sizes, but are all rectangular. The billboard widths and heights are all integers. We will supply you with the size in inches and the text we want printed. We want you to tell us how large we can print the text, such that it fits on the billboard wit...

Cisco Interview Question for Software Engineer/Developer (Fresher) 1 RiteshBhatkar 2 weeks

CISCO placement papers 2011,VJTI Matunga MUMBAI

All questions were objective type.

20 quant questions were dere, 4 on logical reasoning and other ones were easy..like pipes waala questions,,page nos ina faulty book and so on.

30 questions were technical based on digital logic,signal processing,data stuctures and Operating systems,microprocessors and Networks..(Guys no need 2 study dis in deep just a rough idea of all dis will do..just prepare os and ds in deep for dose wh...

Cisco
Adobe Written Test Question 3 Abhijeet 1 month
main()
{
              unsigned int y = -12;
              int x = -2;
              if (x>y)
                   printf ("x is greater\n");
              if (x<y)
                   printf("y is greater\n");
}

Predict the output of the code snippet.

Answer is - x is greater.

I executed this on Linux Terminal. Can anyone please explain why x is greater even though it is -2 and y is 12?

Deciphering the key 1 Anubhav 2 months

Alice invents a key (s1, s2, s3, ... , sk). Bob makes a guess (g1, g2, g3, .... gk).He is awarded one point for each si = gi. Each s1 is an integer with the range of 0<=s1<=11. Given a q guesses
(g1, g2, g3, .... gk) b1
(g1, g2, g3, .... gk) b2
.
.
.
(g1, g2, g3, .... gk) bq

Can you state if there is a key possible. Given 0<=si<=11, 1<=k<=11, 1<=q<=8.
For Example
2 2 1 1 2
1 1 2 2 1

Answer to this wil...

nagarro coding question 3 camster 2 months

We need to write the function to check the password entered is correct or not based on the following conditions..
a) It must have atleast one lower case character and one digit.
b)It must not have any Upper case characters and any special characters
c) length should be b/w 5-12.
d) It should not have any same immediate patterns like
abcanan1 : not acceptable coz of an an pattern
abc11se: not acceptable, coz of pattern 11
123sd123 : acceptable, as not ...

Confused 2 Suresh 5 months

Ebay/ yahoo? Which is a better offer to take.. yahoo is paying me 5k more than ebay.. i like both the teams.

several C++ interview questions 4 lion 6 months

What's the output of the following C++ code, and how to analyze it?
int main ()

{

int ia[] = {1,2,3};

int *pia = ia;

const int *pci = pia;

int x = *pci;

*pci = 5;

int j = *(pci++);

}

data structure algorithums interview questions 3 8 months

Hi all,

Can any one tell me where i can find data structure algorithms interview questions

thanks & Regards,
P Prakash

Citrix Interview Question for Software Engineer/Developer (Fresher) 1 sreenivas 8 months

Does anyone know attende for citrix interview or written test. if yes, give details please. i need any model question paper for citrix..Thanks

Citrix
AthenaHealth interview 5 10 months

Friday, August 21, 2009

AthenaHealth interview

The first round was for 1 hour with 10 questions and the way you work it out will determine whether you enter the next round or not.

1)Let’s play a game of Russian roulette. You are tied to your chair and can’t get up. Here’s a gun. Here’s the barrel of the gun, six chambers, all empty. Now watch me as I put two bullets in the gun. I close the barrel and spin it. Should I spin the barrel or not so that you could be a...

Adobe Interview 1 guptasunny158 11 months

Anybody appeared for the Abobe interview recently. I need some information regarding the Java opening in ADOBE. What kind of questions they are asking to Java Experienced People.

Adobe Interview questions? 1 11 months

Has any given the Adobe written test recently? Can I have some sample questions to get a direction on what they ask? Thanks in advance!!

A hedge fund interview question: what's the output result? And explain why. 5 1 year

what's the output result? And explain why.
#include <stdio.h>
int main()
{
char *p;
char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8};
p = (buf+1)[5];
printf("%d \n", p);
}

How can we traverse through all the files in a folder and the subfolders? 2 Misraji 1 year

How can we traverse through all the files in a folder and the subfolders. What system calls should be used?

interview question from adobe 1 pcp 1 year

Implement a string tokenizer for a large scale string? How to minimize the I/O involved?