X
What is MyCareerStack?

Code, questions and career!

It is a platform for the computer science community to learn, create and share. And, it is also a one stop solution for anyone who dreams to land up with a job in companies such as Google, Microsoft and Facebook. A place that provides solutions to all the needs of programming geeks!

Create Account

Given a function, func( rect a, rect b), which takes two rectangles as argument and tells if two rec...

This is a testing profile question asked by Microsoft in 2011. If you are being hired for testing profile you will face many such questions which aim at testing your ability to come up with interesting and unique test cases. You should think out of t...
Read More

Microsoft 10

There are N houses in a row. Each house can be painted in either Red, Green or Blue color. The cost ...

This problem can be modeled as a Dynamic Programming problem. The DP equation can be given as C[i][c] = H[c] + min(C[i-1][x]) x belongs to {Red, Blue, Green} x belongs to c Here C[i][c] is the cost of painting the row of houses ending at ...
Read More

Google 6

Given a linked list containing characters that form a string such as --------- "my career stack" --...

The question is a basic extension of question, in which we are asked to reverse a sub-parts of a linked list by length k. The only difference being that here the 'k' is different for each reversal. Although the question can be done iteratively, recu...
Read More

Google 6

Google Telephonic Intern Interview

I was actually looking for such a platform where i can share my Google Telephonic interview experience with CS guys.I was interviewed in dec 2010, it was very exciting time for cs people at IIT. Everyone was preparing for interviews and big comp...
Read More

By Gurbinder Gill  Feb 16 '2012 at 07:04 3

Interviewing is broken!

I have been thinking about it for a long time but I was not sure untill I posted Hacking job interviews on Hacker News a day ago. It taught me some invaluable lessons as a young college undergraduate who is, himself, giving interviews to a few c...
Read More

By Vivek Prakash  Feb 22 '2012 at 15:50 4

Ever out of disk space in ubuntu ?

Ever since i started using ubuntu, at the back of mind one thought that always haunts me is that "My system will crash and i'll loose all my data!!!". But as you go along, you learn tricks and fixes that help you give some mental peace and security.&...
Read More

By Gurbinder Gill  Mar 24 '2012 at 13:09 0

Internship at SlideShare

SlideShare (world’s largest community for sharing presentations. With 60 million monthly visitors and 130 million pageviews, it is amongst the most visited 200 websites in the world) seems to have internship openings  in the areas of ...
Read More

0

Internship at IIT Roorkee – Electronics & Communication, Computer Science

Department of Electronics & Computer Engineering at IIT Roorkee is inviting applications from students of Government/Government-funded institutes (other than IIT) for summer internship 2012. Please note that there are 2 categories of internships ...
Read More

0

Internship with Ekalavya – Computer Science / IT / Electronics

Ekalavya undertakes a significant amount of software and hardware development work in their Affordable Solutions Lab.Last year, we selected 60 interns to work on these projects, simultaneously enabling them to fulfill the summer internship requiremen...
Read More

0

Iterative Tree Traversals

Tree traversals, are very important for any interview. Almost any interview question that you get, can be solved by finding out the correct traversal

Read More

4

Longest Increasing Subsequence

This is a classic Dynamic Programming problem L is a 2D array that contains the largest sub-sequence up till that index at pl

Read More

1

All Possible k Combinations of n numbers

This program takes two input: n and k and find out the nCk i.e. combinatorics.
It gives all possible k combinations of n n

Read More

1