I'll be sitting for an Amazon interview in 3 months. Which website should I use to practice: SPOJ, HackerRank, HackerEarth, CodeChef, Codeforces, or UVA?

 
 
 
 
 
 
 
 
 
 
 
 
Promoted by Hired.com
Have startup companies apply to you. Learn more now.
We'll pay you $1,000 when you land your dream job on Hired.
Sign Up at Hired.com/signup
 
12 Answers
Tom Nikl, former Sr. Product Marketing Manager at HackerRank
 
 

First, you should absolutely know your basics as a few others have already stated. But, the advantage to using these sites is that some of them, like HackerRank, could very well be the platform that's used during your interview since they are a HackerRank customer. If you're familiar with the platform and have a rough idea of the question formats, it could give you an edge over people who've not practiced on that platform before.

9.9k Views · View Upvotes
Nitesh Agrawal, Software development engineer at amazon.
 
 

GeeksforGeeks is enough. Recently I cleared AMAZON interview (SDE-1) and all the questions are from Geeksforgeeks. and some CS fundamentals (OS,DS,DBMS,Networks).

Practice geeksforgeeks and write clear code on paper. you can practice on leetcode also for handling edge cases and various types of questions.

Topics you should focus -

  1. Tree traversals and other tree questions.
  2. simple linked list and array questions.
  3. BFS,DFS.
  4. some questions based on graph.
  5. Dynamic Programming.
  6. work on your coding skills, Try to write clear and simple codes which are syntactically correct and don't forget to handle all edge cases.
  7. Time complexity and space complexity of each algorithm, and they can ask proof of that algorithm.
  8. You have to give optimal solution and code for that.
  9. If you are applying off campus then there may be a design round so practice some basic design.
10.9k Views · View Upvotes
Promoted by Boomerang for Gmail
The upgrade for Gmail that the whole office is talking about.
Delay send, follow-up reminders, and AI that all help you email better. Try Boomerang free today.
Learn More at boomeranggmail.com
Eugene Yarovoi, co-organizer of the Seattle Tech Interviews meetup. I train others in algorithms
 
 

If you want to practice coding questions, the best site I've seen for this is InterviewBit. After that, you can read people's interview experiences on GeeksforGeeks.org and see questions recently asked at companies on Glassdoor.com or CareerCup.com.

9.2k Views · View Upvotes · Answer requested by Madhulika Chavva
 

I would give my honest answer - None of them.

Amazon would be having an algorithmic interview. The best way to prepare for that would be to open GeeksforGeeks and CareerCup. Open up the interview corner, you would find plethora of interview experiences for Amazon. Practice those question hard. GeeksforGeeks would be the best place to prepare for it. Go for it in a structured way, e.g. lets say do all array then link lists then trees. Be prepared to devote each and every single amount of your time to this one purpose. I would wish you All the Best. Cheers!!. :)

P.S. I don't want to say that sites you mentioned are useless but these sites are more of a competitive programming practice platform, hence would help out less effective way for Amazon in 3 months of time.

6.8k Views · View Upvotes
Akhil Kumar, Software Development Engineer at Sentieo (2016-present)
 
 

Just start doing these sets:
Amazon Archives - GeeksforGeeks
I have done that and cleared the Internship Interview of Amazon.

6.9k Views · View Upvotes
Saurabh Singh, Software engineer by profession, learner by heart.
 
 

http://oj.Leetcode.com
It has exactly the type of questions that Amazon asks.

8.1k Views · View Upvotes
 

Its not about the website you should follow but the types of questions you should do.
Every Online judge is somewhat similar to each other. Practice data structures questions from geeksforgeeks and career cup , use spoj and codechef for practice of AdHoc problems and give as much time as you can , you'll succeed definitely . :)

7.2k Views · View Upvotes
 
 

Sites that go over basic computer science algorithms and data structures.  I interviewed with them and it was mostly data structures and algorithm type questions.  Know about hashmaps and binary trees and traversing through trees, and graphs, and other stuff related to a grad level course on said topic.

6.2k Views · View Upvotes
Spurthy Kapa, 4+yrs experience & working as a Recruitment Specialist @ HackerEarth
 
 

Participate in this coding challenge & stand a chance.

Amazon Developer Hiring Challenge | Developer jobs in April, 2016 on HackerEarth

2.1k Views · View Upvotes
Ishan Dutta, Algorithm enthusiast, Competitive programming lover
 
 

None of the above.

Forums likes of geeksforgeeks, careercup, glassdoor and few more would be better suited for interviews.

689 Views · View Upvotes
Piyush Maheshwari, worked at Amazon.com
 
 

GeeksforGeeks - Enough said.

8.1k Views · View Upvotes

amazon interview的更多相关文章

  1. Amazon Interview | Set 27

    Amazon Interview | Set 27 Hi, I was recently interviewed for SDE1 position for Amazon and got select ...

  2. Amazon Interview Question: Design an OO parking lot

    Design an OO parking lot. What classes and functions will it have. It should say, full, empty and al ...

  3. Amazon behavior question

    Amazon onsite behavior question[一亩三分地论坛面经版] - Powered by Discuz! http://www.1point3acres.com/bbs/thr ...

  4. Top 25 Most Frequently Asked Interview Core Java Interview Questions And Answers

    We are sharing 25 java interview questions , these questions are frequently asked by the recruiters. ...

  5. Find longest contiguous sub array

    It's still an Amazon interview question. Given an array containing only stars '*' and hashes '#' . F ...

  6. Select the best path in a matrix

    Amazon interview question: Given a 2-dimensional array with arbitrary sizes and contains random posi ...

  7. 面试题: generate an equation, by inserting operator add ("+") and minus ("-") among the array to make equationExpression == 0

    package com.Amazon.interview; /** * @Author: weblee * @Email: likaiweb@163.com * @Blog: http://www.c ...

  8. Google Interview University - 坚持完成这套学习手册,你就可以去 Google 面试了

    作者:Glowin链接:https://zhuanlan.zhihu.com/p/22881223来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商业转载请注明出处. 原文地址:Google ...

  9. interview material

    Articles Recommended: Steve Yegge – Get That Job at Google [web] Carlos Bueno – Get That Job at Face ...

随机推荐

  1. [笔记] print函数进阶

      1.1print(values=None,sep='',end='\n',file=sys.stdout,flush=False) 参数: values:输出到控制台的string sep:设置输 ...

  2. Polymorphic form--多态表单

    一个ruby on rails项目,用户和公司的模型都有地址. 我要创建一个地址表,包含用户和公司表的引用,比直接做下去要好一点,这回让我的数据库设计保持干净. 我的第一印象是,这似乎很难实现,外面所 ...

  3. Spring IOC(DI)

    软件152 余建强 1 什么是IOC IOC—Inversion of Control,即“控制反转”,不是什么技术,而是一种设计思想.在Java开发中,Ioc意味着将你设计好的对象交给容器控制,而不 ...

  4. 远程桌面控制项目开发(Spring+Netty+Swing)

    [目录] 1.前言 2.初现端倪 3.款款深入 4.责任细分 5.功能层级图 6.项目结构 7.关键类设计 8.一些设计想法 9.待优化 10.一点心得 11.效果演示 12.讨论 13.GitHub ...

  5. 常用工具说明--mysql数据库安装

    MySQL安装文件分为两种,一种是msi格式的,一种是zip格式的.如果是msi格式的可以直接点击安装,按照它给出的安装提示进行安装(相信大家的英文可以看懂英文提示),一般MySQL将会安装在C:\P ...

  6. Shell脚本编写2------有关变量

    shell脚本中变量定义方式十分简单,直接将值赋值给变量较好例如 :name="tuanzhang"注意,变量名和等号之间不能有空格,这可能和你熟悉的所有编程语言都不一样.变量命名 ...

  7. 关于SVN提交注释的问题

    如果客户端是TortoiseSVN的话,在客户端要设置的版本库上点右键,选择菜单TortoiseSVN--属性,新建属性,选择属性tsvn:logminsize,设置log的最短长度,然后提交.然后如 ...

  8. 常用js-API

    jquery.base64.js //下面是64个基本的编码 var base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklm ...

  9. 【原】Maven解决Jar包冲突

    一.起源 引入二方jar maven 包后出现 NoSuchMethodError org.apache.commons.lang3.StringUtils.isNoneEmpty . 第一感觉就是j ...

  10. An internal error occurred during: "Updating status for Tomcat v7.0 Server at localhost..."

    tomcat启动maven工程的时候提示如下错误信息: An internal error occurred during: "Updating status for Tomcat v7.0 ...