Goldman Sachs Interview Question for Applications Developers


Country: India
Interview Type: Written Test




Comment hidden because of low score. Click to expand.
8
of 12 vote

2 , 4, 8, 16, 24, ....

1st series...

2 = 2^1 * 1 (2 * 1 )
8 = 2^2 * 2 (4 * 2)
24 = 2^3 * 3 (8*3)

2nd series ...
4 = 2*2
16 = 4*4
next number = 6*6 = 36

- virgo676 May 12, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
3
of 3 votes

ur 2nd series could be
2^2
2^4
so 2^6 or 2^8
and so on...

- prakharbansal July 30, 2012 | Flag
Comment hidden because of low score. Click to expand.
3
of 3 vote

If the series also had a 1, we could think on the lines of PNG image formats color depth in bits.Which has the following sequence 1 , 2 , 4 , 8 , 16 , 24 , 32 , 48 , 64

- Ran May 14, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
2
of 4 vote

2,4
8,16
24,48
60,120

- subhrojit May 14, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
1
of 5 vote

2 = 8*(1/4)
4 = 8*(1/2)
8 = 8*1
16 = 8*2
24 = 8*3

multiplier = (1/4)*(2^i)

- vermachili May 15, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Your answer cannot apply to 24 != 1/4 * 2 ^ 2 = 32

- Chen.Yangho May 29, 2012 | Flag
Comment hidden because of low score. Click to expand.
1
of 1 vote

2,4,8,16,24,x(let)
taking 3 values from starting ....
2,4,8 => (2*8)/4=4.... a,b,c = (a*c)/b...
4,8,16 => (4*16)/8 = 8
8,16,24 => (8*24)/16=12.... sexuence is , 4,8,12 ... so next num is 16..
16,24,x => (16*x)/24=16 => x=24 ... answer....
..
..
DO SUGGEST , if there is any prob

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

I think there's really no wrong answer as long as you can sufficiently explain why... that's the point of the question, to see how many ways you can look at one problem

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

lets break it for alternate record

2 8 24 48 48
(2*4) (8*3) (24*2) (48*1)
--------------------------------------------------------
4 16 48 96 96
(4*4) (16*3) (48*2) (96*1)


so answer can be 2,4,8,16,24,48,48,96,48,96

- RJ May 23, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Multiple spaces reduced to 1 by the site,
but the idea was to place the brackets from a[i][2] element in a matrix

- rj May 23, 2012 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

ans =36

- Anonymous June 04, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Subtract 57 462 - _28_4 = 24_6_ answer

- Anonymous December 06, 2019 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

{
ans=36
}

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

I agree with you. Your points of view make me thinking about some thing for my project.

I also find more materials that may be useful for you: humanresources.hrvinet.com/financial-controller-interview-questions/

Pls try to keep posting. Tks and best regards

- tua022012 June 14, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Ans:{ 48 }

- Amin June 19, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

this is wrong question

- pinku June 21, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

96

- MANOJKUMAR1991 June 22, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

28

- Anonymous July 23, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

36

- Anonymous July 28, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

48

- Abhinav Aggarwal August 27, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

36

- xyz September 15, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

36

- xyz September 15, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

2,4,2*4,4*4,8*3,16*3=48

- rishijhil October 12, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

{02,04,08,16,24.......}
{new no. = previous no.+sum of its digits+its first digit}
{Now, 04=02+(0+2)+0}
{08=04+(0+4)+0}
{16=16+(1+6)+1}
{24=16+(1+6)+1}
{x=24+(2+4)+2}
{therefore, x=32}

- Mordor November 30, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

2 , 4, 8, 16, 24, ....

1st series:

2 = 2^1 * 1
8 = 2^2 * 2
24 = 2^3 * 3

2nd series ...
4 = 2^2
16 = 2^4
next number = 2^6 = 64

- srinu.5019 March 13, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

it should be 36

- pintuguptajuit(PINTU GUPTA) March 24, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

4*(1/2) = 2
4 * (1) = 4
4 * (2) = 8
4 * (4) = 16
4 * (6) = 24
4 * (8) = 32
4 * (10) = 40...

- javacoder April 04, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

the next number in the series = 32.
.25*8 = 2
.50*8 = 4
1*8 = 8
2*8 = 16
3*8 = 24
4*8 = 32
5*8 = 40
6*8 = 48

- Ned Buchman May 07, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

find x in given series. 4,8,8,16,12,24,x

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

6 8 7
3 64 4
24 48 ?

- Karmbir June 20, 2017 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

16,16,24,48

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

4-+)689&8(-:))

- P November 07, 2017 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

16,24,54,115,?

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

4,6,6,8,112,?

- Anonymous September 28, 2020 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

2 8 24 -----> 2*4 = 8, 8 *3 = 24
4 16 -----> 4 *4 = 16, 16*3 = 48.

Ans: 48.

- Rambabu May 17, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
Comment hidden because of low score. Click to expand.
0
of 0 votes

next series 007

- gfh July 25, 2012 | Flag
Comment hidden because of low score. Click to expand.
Comment hidden because of low score. Click to expand.
0
of 0 votes

Hahaha..

- Prem May 17, 2012 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

teri maa ka bhosdaaa

- Anonymous June 14, 2012 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

2=2^1*1
4=2^2*1
8=2^2*2
16=2^3*2
24=2^3*3
96=2^4*3

- Anonymous October 29, 2012 | Flag


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