replica watches
https://luxurywatch.io

replica watches uk

www.bestwatchreplica.co

http://www.rolex-replica.me/
discount replica watch

job

My contribution on Quora on cracking technical interviews:

 

  1. What should I do in the next 6 months to get into a company like Amazon/Google?
  2. How do I go about preparing for interviews on GeeksforGeeks?
  3. What are the top 20 websites for interview preparation?
  4. What are some useful websites for a CS student?
  5. How does one become good at problem solving?
  6. Career Cup or GeeksforGeeks?
  7. Should I do competitive programming or learn GeeksforGeeks, from a placement point of view?
  8. Which is the best book to start learning algorithms?
  9. Which books should I refer for data structures in C?
  10. I suck in competitive programming but I wish to make a mark there. I’m improving my skills by practicing on GeeksforGeeks. Is this the right approach?
  11. Should I learn algorithms and data structures in my vacation or learn any other thing? See details.
  12. How many academic projects should be mentioned in the resume while appearing for big companies like Amazon, MS, Adobe by a fresher?
  13. What are your reviews of Data structures and Algorithm made easy by Narasimha Karumanchi? Should it be used and when?
  14. Is it neccessary to put subjects of interest in our resume, we dont get good job at big tech companies if not added?
  15. Do we have to mention our Data structures skills in our resume in subjects of interest part ?
  16. Does the bloggers get paid when they write article on geeksforgeeks?
  17. How can one contribute to GeeksforGeeks and become one of the moderators?
  18. Studying Algorithms and data structures cover similar topics in c,c++ and Java languages?
  19. What is the difference between dynamic programming and recursion?
  20. What is easiest approach to tackle Dynamic programming problems?
  21. How should I explain dynamic programming to a 4-year-old?

Copyright © 2017, Aashish Barnwal,  All rights reserved.

Read more

This post was residing in my draft for quite long. I finally got some time out of my busy schedule to refine it.

The first question quickly pops up on why am I writing this post at all. There are already tens of hundreds of similar compilations on web that talks about this.

Well, following reasons compelled me to do so:

  1. Being a GFG moderator, I’ve been getting many requests from readers through various social media (FB, LinkedIn, Quora, InstaGuide) and various mail clients asking for mentorship and guidance on how to prepare for top MNCs like Microsoft, Amazon, Google etc
  2. Having gone through similar journey and witnessing many of my friends succeeding, I feel knowledge should be shared. My experience might be useful for newer generations who happen to chase the same goal as once was mine

Please note that this article is purely a reflection of my learnings, what I followed through the years and my experience. This is NOT the only way to improvise on what is needed – your coding skills, strengthening DS & Algorithms and boosting problem solving skills. I repeat, this is NOT the only way. There are things I couldn’t follow because of time constraints or didn’t follow because I was just not aware. Please comment if I missed anything which is worth mentioning here.

Language

Language has been a topic of debate between aspirants since years. It’s always good to master one language, knowing ins and out of it rather than hopping from one language to other. Why?  Because sometimes it might happen to you that when you get a problem, you start wondering what language you should choose and your focus is compromised. When you should really concentrate on problem solving, Implementation comes later. Then while you are coding, you plan to change the language in between. This won’t serve you good in interviews. If you’re able to solve a problem in language ‘X’, eventually you will also solve it in language ‘Y’. Learning a new language is just a matter of time. A language might not be as widely used after 5 years as it is being used now. Your ability to solve a problem will what matter in the long run.

I usually switch between C and C++. If time is at its crunch, I prefer to use STL (standard library functions) instead of writing my own version of Linked List. If I want to develop a project, an android app for instance, I go for a managed language because it is easier. If I want to automate something to save my time, like replying and liking my birthday wishes, a python script is the saving grace. You got the point, right? Master one language and learn others as per requirements.

Data Structures and Algorithms

Data Structures and Algorithms is very important and serves as the backbone of problem solving.

For beginners, Fundamentals of Data Structures in C by Sahni Horowitz is good. After reading it, you should be able to understand basic Data Structures, how they are implemented and fewer examples where they can be used. Don’t expect to learn advanced DS through this. After your basic concepts are clear and you are comfortable implementing them in a language of your choice, you can work on learning algorithms and solving problems.

Many sites (including GeeksforGeeks) present problems in a very adhoc manner with no order of difficulty level. This makes things difficult for beginners because they don’t know the difficulty level of the problem they are attempting. Data Structures and Algorithms made easy by Narasimha Karumanchi is a good read after you are comfortable with the basics. It has pretty good collection of problems organized by difficulty level. Just make sure to try to solve problems on your own instead of rushing for the solution. Once you have a fair understanding of DS and have got some confidence in solving problems, jump to online portals and start solving problems from topic of your choice. GeeksforGeeks is good to start with.

For Algorithms, Introduction to Algorithms by Cormen is a must read.

Advanced Data Structures

Sometimes, basic DS don’t serve the purpose to solve problems and you need to know advanced DS. Day to day problems like implementing a prefix based search for a phone contact list to finding the dictionary word from a jumbled sequence of characters need special kind of DS. If you appear for Google, find some time for – TST, Trie, Suffix tree, Suffix array, Fibonacci heap, Segment tree, Gap buffer, Rope, Skip list, K Dimensional tree and so on. People would say you don’t need it. But believe me, it comes handy. While it is good to know the implementation of these DS, I would suggest to also know when to use one.
Elements of Programming Interview is must if you’re appearing for Google.

Problem solving

So you got a gun, understand how to use it, probably have used it before. If you are going to fight a war, you won’t like to rely upon your amateur experience. You would prefer to practice hard to save your ass. Now try to think it in perspective of problem solving. You know what DS are. But you also need to know when to use one. Welcome to the world of problem solving. You are given a problem and you are asked to solve it. That problem can be anything starting from a simple puzzle to implementing a user scenario. You must have noticed degree of connection feature in LinkedIn. How will you implement it? Does your approach take care of scalability? Will your code crumble when user base increases ten folds? This is the most important skill top MNCs usually look for. How do you approach a problem? How do  you divide it into modules? How do you solve each of them and then combine them?

Dynamic Programming

I separated out DP because it is one monster which is difficult to master upon. No matter how many problems did you solve in the past, a new DP problem can always surprise you. The more you will practice, higher the chances will be to find out patterns. Google is peculiar about DP. You should expect at least one DP problem per interview round  if you are preparing for Google. Practice DP section from:

Competitive Programming

Competitive Programming plays a very important role in boosting problem solving skills and ability to perform under time pressure. Do participate in various online portals like TopCoder, CodeChef, SPOJ. Here is a post on Getting started in sport of programming.

Design and Testing

So you are good in DS and Algos. You are probably good in problem solving as well and you come up with different approaches with varying time and space complexity. The problem which you solve in Competitive Programming is well defined and has to work under an environment which nobody will probably use. What if you are asked to implement a user scenario. The problem statement is usually vague and you need to discuss a lot to resolve ambiguities. This is where design comes into picture. How will you design a redo-undo feature? What data structures will you use to store history in a web browser? How will you implement auto-complete feature in address bar? Let’s say Amazon wants to build a feature that would resume a video stored in cloud from any device. What data structures will you use? How will you scale up things? Does your design take care of concurrency issues? What about the performance? What if you and your girlfriend share the same cloud account and are trying to play the same video from different devices?

Now you have thought through the design well, have come up with different data structures to use with pros and cons in mind. While implementing, you must take care of corner cases. You must be aware about the integer overflow issue in Youtube video view count. While implementing, they never really thought that the view count can exceed what an integer variable can hold and BOOM, the view count cycled back to zero.

Before a feature goes live, it must be tested well. It is good to practice some test questions as well. How will you test a Insert image feature in MS Word? What about a cut-copy-paste feature? How will you test Temple Run game? Try to write all the possible test cases and how you are going to handle this in your code. Writing a robust code is very important. If you take care of these things at an earlier stage, you can avoid silly bugs (and boost your chances of getting selected in interviews).

More on System Design

No System is perfect. That’s the biggest challenge. That’s why this interview (and hence its preparation) has always been grey. What worked on System ‘X’ may not work on ‘Y’. It’s all about requirements. WhatsApp doesn’t store messages in their servers, but FB does. It changes things.

If you have time and passion, read Designing data intensive applications by Martin Kleppmann. Go through System Design PrimerGrokking the System Design Interview, System Design section on InterviewBit. Watch videos from Jeff Dean (the Big guy) & Tim Berglund, follow engineering blogs on Medium. You can also setup mock interviews to see how you would sail in real interviews. Honestly speaking, people do well in such interviews only when they have worked on such systems before.

Google cares about perf numbers a lot — how many machines, bandwidth, latency etc. Follow HighScalibility to know how real world big systems work, decisions they took and the rationale behind various trade offs.

Culture eats strategy for breakfast

Companies these days focus on hiring candidates with right attitudes — who can play well in the team, are easy to work with, proactive, so on and so forth. Brilliant jerks they say, ruin the culture and hence the product in the long run. It started with Atlassian and now everyone else is following it. This part is not to be taken lightly.

Amazon is particularly obsessed about their 14 leadership principles. They are very choosy about it. Do spend some time contemplating on various aspects of your career in your previous companies — failures, mistakes, learnings, things you would change if you go back in time and do it all over again, customer obsession, leadership, pro-activeness etc. Following resources can be useful:

  1. InterviewGenie – Amazon
  2. Interviewing at Amazon — Leadership Principles – Dave Anderson: The best resource out there
  3. The Amazon Way: 14 Leadership Principles Behind the World’s Most Disruptive Company

What else?

Have a sound understanding of Operating System. The dinosaur book by Galvin is a good read. Know how networking works and have insights on DBMS.

Resume building

First impression is the best. Resume is the first thing that HR will use to decide whether to call you for interview or not. And they have got hundreds of them. So they will usually scan it for 20 seconds to 2 minutes. It should be clean, concise and elegant. Each word mentioned should worth the space it eats. The rule of thumb is if you have less than one year of experience, the size of resume should not exceed a page (with few exceptions).

Few points to note:

  • Maintain a header to fit info like name, email id, address and contact number
  • Mention level of expertise corresponding to each language. Example: Proficient in C and good at Java
  • If you are mentioning a project, write your key learning, impact in the team and . If this project is online (an app), don’t forget to include the link. This will show that you built something that is being used by people . Guess what, this is what companies do, building a product, stabilizing it as per user feedback, taking in new feature requests and so on.

Here are few useful tips from Gayle – What are common mistakes that applicants make when writing their resumes for tech companies?

How to apply for Microsoft?

I get many messages asking me for a favour to refer them. When I ask them how much comfortable they are with DS and Algos, they say good enough. Then I rephrase my question to how do they feel when they solve interview experiences at GeeksforGeeks. Either they haven’t heard of GeeksforGeeks or they never read. This is not a surprise. GeeksforGeeks is still growing. But when I ask them a problem on DS by tweaking already existing famous ones, all they say is they haven’t solved this problem before. Please do NOT do that. It’s one thing to yearn for something. But quite other to put efforts to make it a reality.

If you are not able to clear the interviews, you will have wait again for 6-12 months depending on the company policy before you can apply again. Now coming to the point,  you can apply for a position at Microsoft either through Careers page or through referral. Referral usually bumps chances of getting an interview call because your resume gets to the system through a person Microsoft trusts to be a good engineer. How do you ask for a referral? It’s simple. Forward your resume to someone you know working there. No one will say NO unless your resume is filled with something which doesn’t fit company requirements. Rule of thumb is we believe in solving problems and if you are good at it, we would love to see you here. Remember, everyone wants to work with a smart person. And this is usually true for any company, not just for Microsoft.

Do’s and Don’ts

  • Practice, practice and practice
  • Make a habit of writing clean and readable code (avoid variables names like i, j)
  • Make sure to handle all corner cases
  • Use pen and paper to practice code. In interviews you have NO access to a compiler
  • Don’t mug up the solutions. Try to solve on your own
  • Think of different ways of solving a problem and thoughts on why one should be preferred over the other

Resources

I have answered few questions related to interview preparation on Quora. You might find some content missing here in blog and it is intentional to avoid the duplication of efforts. Please read my technical answers here.

Resources (which I haven’t talked about):

  • Cracking the coding interview by Gayle Laakmann: A must read once before interviews. It covers aspects like what interviewers expect from you, how to deal with behavioral questions and few interesting problems. It will change your thoughts about design and test problems for good
  • GeeksforGeeks: A bible of problems (with well explained solutions). Make sure you do NOT rush for solutions. Try to solve problems on your own no matter how much time does it take. With time and honest practice, you should get better
  • CareerCup: A huge collection of problems. Though you can’t rely upon solutions, it provides a rich community for discussing problems. I found it good for discussing design problems
  • Project Euler: A heaven for mathematics lovers. You solve the problems using some formulas on paper and then write code to get the final solution. Solve at least 40 problems from this site.

You might like following write ups:

PS: This blog is published on GeeksforGeeks.

Good luck!

Copyright © 2016, Aashish Barnwal,  All rights reserved.

Read more

I usually do not write diaries. Since this is probably the best two days of my life, I thought to pen it down.
24th September 2012: A great day for me. Hired by Microsoft, India.

I traveled to Hyderabad to attend an event organized by Microsoft, called the New Hire’s Day on 8-9th march 2013. I with my friend Abhinav boarded flight on 7th march from Bhubaneswar. We were more excited as this was our first trip by air and that too fully sponsored by MS. We were warm welcomed on the Hyderabad airport. We were taken to the Re:gen:ta One(Five star hotel). We were the first one to arrive Hyderabad(7th afternoon). So we kept on exploring the hotel room. The hotel was awesome and it had everything you can think of. The only thing it missed that there was no lock in the bathroom. 😛 Anyways, i enjoyed a lot. I have attached few pictures of the hotel.

main-qimg-d775789861fddf06192bba6e792f171b

main-qimg-51cc0a06f798e7c2afb380f6520d67ae

main-qimg-584c91b8158f2a2de301443f4df9d229

main-qimg-1ff80fc4041d2d9d01c137c75d06de22

People started landing from different parts of the country right from the 7th evening. We interacted with few of them. I met my roomie Akshit Khurana, a very cool guy. Each of us received packages in the hotel itself which included a MS T-shirt and schedule of the event to be held in the next two days. The great thing was that color of the T-shirt represented team so that we could find it easy to interact with members of same team. We were supposed to wear the T-shirts on the next day.

The main event started on 8th morning. We were taken to the MS campus at 8:30 AM. We got NHD I-cards which was representing a random team name (This had nothing to do with our actual teams). The event started with some talks(as of our surprise, it was not boring, we enjoyed it fully) from great leaders regarding careers @Microsoft and how they did it, followed by a tea break. Then, we had an ice-breaker session. This was a kind of intro program so that we could mingle with each other in our team and know the team and its product better. We had great fun together. Everyone was interactive. MS is full of smart people where you get a chance to learn from everyone. We learned about the products more closely we would be working on. We also played some games together. Few of us got goodies too. Within half an hour, the environment melted and we had interacted with most of us. The session ended on 1:00 PM.
At about 2:30 PM, academia session started. They told us how MS is organizing varieties of events like http://Code.Fun.Do in different colleges to pick up the talented people apart from campus hires. There was a discussion on how they could improve such programs and events.

One of the best things in MS is that the working life is very flexible here. You can come at any time and leave at any time. There are many exciting things in the campus which won’t make you feel bored and which make it a wonderful place to work. We(I and Abhinav) played Kinect(first time) where your physical activities are synchronized with the game. It was an amazing experience.
There was a photo session where we had a lot of pictures(by MS of course). I will attach it once they upload it.

Real fun begins.
The main fun began at about 5:00 PM. We were clustered in the hall for group photo session where the environment suddenly became noisy and some of the previous year hires started dancing. Then everyone went mad and each of us jumped onto the dance floor to rock on. We danced a lot. We also got chance to visit the MS campus. Guys I must say the campus is beautiful and amazing. One eye catcher is that you will find road running from the 7th floor of the building. Then it was time for some D.J. We all danced a lot (even me, and I’m not one who likes to dance) and had dinner. There were some small games. People got chocolates for winning it. The food was great. This ended the first day at Microsoft.

44381_10151311448487060_2042757222_n

main-qimg-ce9e8faa3f8129c1f3fe4a2166907a06

main-qimg-5d429a7f8dddad639f8845d41ff874e8

main-qimg-28310499cb7fab9b28b60da4ba3bab1c

The next day was something challenging for us. We were told to group together with team name as indicated in our NHD I-cards. We faced Engineering Challenge. We were given some stuff and we had to make a mechanical structure. The major challenge was that they told us to do it in steps. Design. Implement. Test. The main objective was to make us learn how to work in a team while having fun. We had a lot of fun together. Special thanks to Richa Bansal, Aarif Jindani, Manish Kumar, Saurabh Agarwal, Ritu Lakhotia, Amritha Raghunath, Prateek Agarwal , Naresh Kumar and Harshit Pahuja. It was almost done, we just missed something. It was really fun interacting with you guys. Cheers. 🙂 🙂

The one thing which makes MS an amazing place is that nobody cares how you look and what is your background. The only thing which they care is work hard and party harder.

All good things come to an end..
They were right. After the NHD, you will keep on counting the days of your joining. Great food. Free cold drinks. Beautiful and amazing campus. Smart and innovative people. Diverse culture. Everything just blew away my mind.

And here is the pic of the day. I am the one in the middle. Red represents office team 🙂
735219_570544469632032_1599767419_n.jpg
Copyright © 2013, Aashish Barnwal,  All rights reserved.
Read more