Monday, September 28, 2009

Amazon interview question Collection

General Questions and Comments [more]
generic questions on software development


--------------------------------------------------------------------------------

What is the complexity of this algorithm


--------------------------------------------------------------------------------

What is your stronger language (Java or C#)


--------------------------------------------------------------------------------

Lot of design questions and OOAD stuff 2


--------------------------------------------------------------------------------

Programming questions asked were more or less same as the ones listed at this site


--------------------------------------------------------------------------------

more architectural view about solve problem capability. I think the intervier was more realistic than the other two . Not just because he recommend to 2nd interview, since I also have the experience with recuriting other employees in the past. I felt the potenial is more than anything in work. Coding is just one thing , maybe the one who can solve the tricky algorithms is good in some way, but how about the one who has been out of school for several years and I cant remeber anything about mergesort or quicksort or how to find the shortest path blah blah. But I do have the confidence I am very good at work. No matter where I go, I found most people are not that smart and if you are willing to learn, you can be the best. Of course, you must have the potenial first. Like you are willing to learn and you like your job... 5


--------------------------------------------------------------------------------

3rd phone interview


--------------------------------------------------------------------------------

what do you like in a job 2


--------------------------------------------------------------------------------

gave some description about the job and then it is done


--------------------------------------------------------------------------------

I took around 2 hours to do a good job for this becoz he wanted propper OO concepts. Created the util class as a singleton with synchronization for the add and edit methods with exceptions being thrown when employee's arent found etc. He seemed to like it from the reply mail i received


--------------------------------------------------------------------------------

The standard stuff had to be added to the api like synchronization, singleton etc.


--------------------------------------------------------------------------------

its coming up soon, hopefully ill do good :D


--------------------------------------------------------------------------------

How do you resolve a collision in a hash table


Algorithm [more]
Coding: How would you find the nth to last element in a linked list? 27


--------------------------------------------------------------------------------

Algorithm: Explain algorithm to shuffle cards 8


--------------------------------------------------------------------------------

Coding: Jig saw puzzle. What are the data structures? Assume you have some method which can tell you if two pieces fit together. How would you solve the puzzle, minimizing the number of times you have to call that function? 9


--------------------------------------------------------------------------------

Algorithm: You have 50,000 html files, some of which contain phone numbers. How would you create a list of all the files which contain phone numbers? 14


--------------------------------------------------------------------------------

Coding: How would you reverse the words in a string? (ie, "the quick brown fox" --> "fox brown quick the" 41


--------------------------------------------------------------------------------

How would you detect a repeated element in an integer array. Discuss various solutions and the order of the algorithm. 37


--------------------------------------------------------------------------------

Write a function to smooth out stock fluctuations. Asked me to layout the mathematical idea for curve smoothing before writing code. 3


--------------------------------------------------------------------------------

Given two sets, Write a function to provide the union of them. STL not allowed to be used.
Optimise for Time and space. 24


--------------------------------------------------------------------------------

Design an algorithm to calculate the most user viewed pages 3


--------------------------------------------------------------------------------

Find missing element in an array of 100 elements. 16


--------------------------------------------------------------------------------

Design an algorithm to find duplicates in an array. Discuss different approaches. 16


--------------------------------------------------------------------------------

Design an algorithm and write code to find nth node from the end in a linked list 3


--------------------------------------------------------------------------------

Design an algorithm and write code to shuffle a standard deck of cards 1


--------------------------------------------------------------------------------

Design an algorithm and write code to serialize a binary tree. Discuss various solutions 18


--------------------------------------------------------------------------------

Design an algorithm and write code to find two numbers in an array whose sum equals a given value 19


--------------------------------------------------------------------------------

Given 2 files, each with names of thousands of customers who bought something from Amazon.com on that particular day. Find the common customers (i.e. common names in file1 and file2) 9


--------------------------------------------------------------------------------

Given 3 files, each with names of thousands of customers who bought something from Amazon.com on that particular day. Find the common customers (i.e. common names in file1 and file2 and file3) 3


--------------------------------------------------------------------------------

count bits in an integer. Solved using mask, did not attempt -1 approach. 6


--------------------------------------------------------------------------------

Given two binary trees, find whether or not they are similar. 12


--------------------------------------------------------------------------------

Determine is a graph is circular. 6


--------------------------------------------------------------------------------

assume your computer is reading characters one by one from a stream (you don't know the length of the stream before ending). Note that you have only one character of storage space (so you cann't save the characters you've read to a something like a strong). When you've finished reading you should return a character out of the stream with equal probability. 11


--------------------------------------------------------------------------------

Algorithm: You have a tree (not Binary) and you want to print the values of all the nodes in this tree level by level. Discussed on phone and asked me to email Java code for my algorithm. 4


--------------------------------------------------------------------------------

Unix: You have 50,000 html files in a UNIX directory structure, some of which contain phone numbers in the format ***-***-****. How would you create a list of all the files which contain phone numbers? (Assume that you already have the regular expression) 5


--------------------------------------------------------------------------------

Given two log files, each with a billion usernames (each username appended to the log file), find the usernames existing in both documents in the most efficient manner? Use pseudo-code or code. If your code calls pre-existing library functions, create each library function from scratch. 8


--------------------------------------------------------------------------------

How could a linked list and a hash table be combined to allow someone to run through the list from item to item while still maintaining the ability to access an individual element in O(1) time? 4


--------------------------------------------------------------------------------

Here is a tree. It's a binary tree but in no particular order. How do you write this tree to a file so that it can be reread in an reconstructed exactly as shown? 33


--------------------------------------------------------------------------------

Here is a graph of distribution centers and the weight to go from one to another. How would you represent this using a data structure? Code an alogrithm that allows me to check if there is a path from one node to another and what the weight of this path is. 1


--------------------------------------------------------------------------------

Given two dates, Design an algorithm to return whether the dates are exactly a month apart, less than a month apart or more than a month apart. 2


--------------------------------------------------------------------------------

Discussed the proof and solution to my card shuffle problem 1


--------------------------------------------------------------------------------

Write a method to shufle the deck. The constraint is it has to be a perfect shuffle - in other words, every 52! permutations of the deck has to be equally like (given a completely random function which is theoretical of course).

I managed to do this with a simple for loop in O(n) time


int[] deck = new int[52];
for(int i=0; i<52; i++)
deck[i] = i;

Random r = new Random();
for(int i=0; i
int ran = r.nextInt(deck.length-i) + i;
int temp = deck[i];
deck[i] = deck[ran];
deck[ran] = temp;
}


--------------------------------------------------------------------------------

int[1000], numbers from 1 to 1000, but one is missed - find it 3


--------------------------------------------------------------------------------

reverse linked list. Why don't you use recursion? 5


--------------------------------------------------------------------------------

If there are two structs, TreeNode and Tree. TreeNode contains 3 elements, data, lChild and rChile. Tree contains 2 elements, int size and TreeNode *root. The tree is a complete tree. So how to find a O(logN) approach to insert a new node. 2


--------------------------------------------------------------------------------

Algorithm and code to detect occurence of a string(patterns) in another string ex: aab, aababa 5


--------------------------------------------------------------------------------

If you are given a set of 1000 integers in a set A , and 10,000,000 integers in a set B, how would you create a set C that would only contain numbers that are both in A and B? 2


--------------------------------------------------------------------------------

In a general tree, how would you find the lowest common ancestor of two nodes that are given to you as parameters? 1


--------------------------------------------------------------------------------

How do you merge n sorted lists with average length K in O(n*log(K)) time? 12


--------------------------------------------------------------------------------

Design an algorithm to find the 100 shortest distances to stars in the universe 1


--------------------------------------------------------------------------------

If you have a draft ransom note and a book, how would you determine if said ransom note can be composed from the book on its own? What if the ransom note is not necessarily in ascii (can be in chinese and such). What if you have no storage save for a few counters?


--------------------------------------------------------------------------------

What is a scripting language? Write a code to output the dot product of two files.


--------------------------------------------------------------------------------

Suggest an algorithm to find the first non-repeating character in a given string. 3


--------------------------------------------------------------------------------

How to find the two numbers whose difference is minimum among the set of numbers 7


--------------------------------------------------------------------------------

a. Findodd - given ana array of numbers return a number which appear odd number of times.
b. isPrime
c. Garbage Collector.
d. OO model for Elevator, grilled a bit but successfully answered.
e. Find if high bit is set in the integer.


--------------------------------------------------------------------------------

Describe the data structures you will use for implementing snake & ladder game 3


Application / UI Design [more]
How would you design a parking garage?


--------------------------------------------------------------------------------

Given an outline for an architectural plan, automate the loading of the design into a computer


Behavioral [more]
Why do you want to work at Amazon? 2


--------------------------------------------------------------------------------

Talk about your favourite project? What part of a Software Project do you enjoy most?


--------------------------------------------------------------------------------

Lunch - QA manager.

1. tell me a situation when u had to face problems and the requirements were not clear. how did u handle the situation?

2. which is the best error you have caught?

3. which is the worst error u've ever caught?

4. asked about a project on my resume


--------------------------------------------------------------------------------

Why do you want to work here?


--------------------------------------------------------------------------------

Favorite feature on Amazon personalization site


--------------------------------------------------------------------------------

How did you hear about Amazon?


--------------------------------------------------------------------------------

what you don't like in a job


--------------------------------------------------------------------------------

what kind og job do you prefer


--------------------------------------------------------------------------------

why amazon


--------------------------------------------------------------------------------

why cs


--------------------------------------------------------------------------------

What is Polymorphism?


--------------------------------------------------------------------------------

If you are already working why are you still looking?


--------------------------------------------------------------------------------

What's the latest book you've read?


--------------------------------------------------------------------------------

If there's a glitch in the system and for some reason, for a very brief moment, the website is inaccessible from your browser. You got back to it a few minutes later and the glitch is gone. Would you report this problem?


Brain Teasers [more]
You have eight balls: seven are the same weight, and one is heavier than the rest. Given a scale that only tells you which side is heavier, how do you find the heavy ball? 9


--------------------------------------------------------------------------------

Given an array of integers where every int has exactly one duplicate except one,
find the number with odd occuring number. 27


--------------------------------------------------------------------------------

assume your computer is reading characters one by one from a stream (you don't know the length of the stream before ending). Note that you have only one character of storage space (so you cann't save the characters you've read to a something like a strong). When you've finished reading you should return a character out of the stream with equal probability. 11


--------------------------------------------------------------------------------

Brainteaser: there is a bar with 25 seats in a line. The people there are anti-social so when they walk in the bar, they always try to find a seat farthest away from others. If one person walks in and find there is no seat are adjecent to nobody, that person will walk away. The bar owner wants as many people as possible. The owner can tell the first customer where to sit. all the other customers will pick the farthest possible seat from others. So where should the first customer sit. 9


--------------------------------------------------------------------------------

If there are a huge array of positive integers, all the integers show up twice except one. Find out that integer. 1


Coding [more]
Coding: Write code to tokenize a string (had to explain code out loud and then follow-up with the actual code in an email 3


--------------------------------------------------------------------------------

Coding: How would you find the nth to last element in a linked list? 27


--------------------------------------------------------------------------------

Coding: You have an array of ints. How would you find the two elements that sum to a particular value? 18


--------------------------------------------------------------------------------

Coding: Implement a binary search in a sorted array 3


--------------------------------------------------------------------------------

Coding: How would you reverse the words in a string? (ie, "the quick brown fox" --> "fox brown quick the" 41


--------------------------------------------------------------------------------

Design a graph class. Write the C++ interface for it. 3


--------------------------------------------------------------------------------

Write a function to smooth out stock fluctuations. Asked me to layout the mathematical idea for curve smoothing before writing code. 3


--------------------------------------------------------------------------------

Write a function to find the no of set bits of an integer. Optimise. Ended up giving two solutions . Could not implement the third one. 10


--------------------------------------------------------------------------------

Given two sets, Write a function to provide the union of them. STL not allowed to be used.
Optimise for Time and space. 24


--------------------------------------------------------------------------------

Given a binary tree, write code to check whether it is a binary search tree or not 9


--------------------------------------------------------------------------------

Do you have unix experience? Have you heard of WC (word count). Code it in c/c++. You can use STL.


--------------------------------------------------------------------------------

Find missing element in an array of 100 elements. 16


--------------------------------------------------------------------------------

write push and pop for stack 1


--------------------------------------------------------------------------------

Design an algorithm and write code to find nth node from the end in a linked list 3


--------------------------------------------------------------------------------

Design an algorithm and write code to shuffle a standard deck of cards 1


--------------------------------------------------------------------------------

Design an algorithm and write code to serialize a binary tree. Discuss various solutions 18


--------------------------------------------------------------------------------

Design an algorithm and write code to find two numbers in an array whose sum equals a given value 19


--------------------------------------------------------------------------------

Print BST level by level 7


--------------------------------------------------------------------------------

Find Nth last element in a linked list 4


--------------------------------------------------------------------------------

Given 2 files, each with names of thousands of customers who bought something from Amazon.com on that particular day. Find the common customers (i.e. common names in file1 and file2) 9


--------------------------------------------------------------------------------

Check if binary representation of an int is a palindrome or not. 21


--------------------------------------------------------------------------------

Write in java a method to parse an integer from a string 2


--------------------------------------------------------------------------------

Count characters in a string, wanted to see a hashtable used. 5


--------------------------------------------------------------------------------

count bits in an integer. Solved using mask, did not attempt -1 approach. 6


--------------------------------------------------------------------------------

Reverse a linked list 10


--------------------------------------------------------------------------------

Given two binary trees, find whether or not they are similar. 12


--------------------------------------------------------------------------------

Determine is a graph is circular. 6


--------------------------------------------------------------------------------

Algorithm: You have a tree (not Binary) and you want to print the values of all the nodes in this tree level by level. Discussed on phone and asked me to email Java code for my algorithm. 4


--------------------------------------------------------------------------------

Given two log files, each with a billion usernames (each username appended to the log file), find the usernames existing in both documents in the most efficient manner? Use pseudo-code or code. If your code calls pre-existing library functions, create each library function from scratch. 8


--------------------------------------------------------------------------------

2nd phone interview: reverse linklist(so stupid, I was too focus on the rule using the exist library much better than build something new(Effctive Java) and when the intervier insisted on asking me to give the non extra memory consuming answer, I was stucked for a while then I told her to move on the next topic. Find the duplicate number from an array. I gave the hash solving method.but I also gave her other answers.


--------------------------------------------------------------------------------

Write code to reverse vowels of string 1


--------------------------------------------------------------------------------

Here is a tree. It's a binary tree but in no particular order. How do you write this tree to a file so that it can be reread in an reconstructed exactly as shown? 33


--------------------------------------------------------------------------------

Multiply a number by 7 without the * operator. 7


--------------------------------------------------------------------------------

I want to see if all the ones in a number appear on the right side of the number and all zeros appear on the left, how can I do this most efficiently? (i.e. 00000111 is true but 100010 is false) 7


--------------------------------------------------------------------------------

no.of 1 bits in a number ---program 3


--------------------------------------------------------------------------------

find dup number for n+1 numbers from 1...n 1


--------------------------------------------------------------------------------

Phone Screen 2: Check whether the bit representation of integer is a palindrome
Multithreading and operating system stuff 1


--------------------------------------------------------------------------------

Given two dates, Design an algorithm to return whether the dates are exactly a month apart, less than a month apart or more than a month apart. 2


--------------------------------------------------------------------------------

Print out a multiplication table, i wasnt told what kind of data structure it is, just that it has 1*1=1, 1*2=2, ...... 200*200=40000, ..... values. 2


--------------------------------------------------------------------------------

Given a deck of nCards unique cards, cut the deck iCut cards from top and perform a perfect shuffle. A perfect shuffle begins by putting down the bottom card from the top portion of the deck followed by the bottom card from the bottom portion of the deck followed by the next card from the top portion, etc., alternating cards until one portion is used up. The remaining cards go on top. The problem is to find the number of perfect shuffles required to return the deck to its original order. Your function should be declared as:

static long shuffles(int nCards,int iCut); 4


--------------------------------------------------------------------------------

The hardest question to date on a phone interview. he asked me to take 2 hours and write the following API.

Create an LRU Cache that caches some key/value pair and kicks out the Least Recently Used when you run out of space. Wanted run times and asked me to comment on how good my implementation is and whether its good for industry level usage.


--------------------------------------------------------------------------------

Asked me to reverse a Linked list without re-creating a new one. I did it recursively going all the way to end and linking it backwards after the recursive call. Had to pass in two nodes though, one previous and one current. He said he likes iteration better becoz its more resource friendly :)


--------------------------------------------------------------------------------

Write a method to shufle the deck. The constraint is it has to be a perfect shuffle - in other words, every 52! permutations of the deck has to be equally like (given a completely random function which is theoretical of course).

I managed to do this with a simple for loop in O(n) time


int[] deck = new int[52];
for(int i=0; i<52; i++)
deck[i] = i;

Random r = new Random();
for(int i=0; i
int ran = r.nextInt(deck.length-i) + i;
int temp = deck[i];
deck[i] = deck[ran];
deck[ran] = temp;
}


--------------------------------------------------------------------------------

Design a data structure for storing sparse arrays. Implement multiplications of such arrays. 2


--------------------------------------------------------------------------------

reverse linked list. Why don't you use recursion? 5


--------------------------------------------------------------------------------

Homework: Reverse all the words in a string.


--------------------------------------------------------------------------------

Algorithm and code to detect occurence of a string(patterns) in another string ex: aab, aababa 5


--------------------------------------------------------------------------------

Asked to code the 'floodFill' method used by graphic products like Paint. 2


--------------------------------------------------------------------------------

Design the classes for Tic Tac Toe. Implement make next move method for the computer player and make sure that the computer wouldn't lose.


--------------------------------------------------------------------------------

Design the game Othello. Write the code to check whether someone has won the game.


--------------------------------------------------------------------------------

Implement class Stack using a linked list.


--------------------------------------------------------------------------------

void removeChars(char *str, char *delete). Remove characters in str that is in delete. 2


--------------------------------------------------------------------------------

Find nth to the last node in a single linked list.


--------------------------------------------------------------------------------

Write a function that would find the one value that occurs an odd number of times in an array. ie; function would return "r" if "ttttjjrll" is passed in. 3


--------------------------------------------------------------------------------

If you are given a number as a parameter, write a function that would put commas after every third digit from the right.


--------------------------------------------------------------------------------

Discuss the code of pre-order traversal of a tree.


--------------------------------------------------------------------------------

Write code to find n-th to last node in a linked list


--------------------------------------------------------------------------------

Write code to delete a node in circular linked list


--------------------------------------------------------------------------------

A phone screen. Write a atoi function for decimal. Expected me to "tell" the code right
from "declare a variable i of type int" to the actual logic. Once this was done generalize it do the atoi for any radix.


--------------------------------------------------------------------------------

How do you determine the size of an object in Java?


--------------------------------------------------------------------------------

Implement the unix command WordCount (wc) using lenguage of your choice. The method takes a string and returns the number of words in the string, number of chars and the number of lines.


Computer Architecture & Low Level [more]
When would a program crash in a buffer overrun case. Gave me,
buff[50];
for( int i=0; i <100; i++ )
buff[i] = 0;

What will happen to first 50 bytes assigned, when would the program crash 5


--------------------------------------------------------------------------------

What is buffer overflow and how do you exploit it? 1


Data structure [more]
What is the difference between arrays and linked lists? What is the advantage of contiguous memory over linked lists?


--------------------------------------------------------------------------------

Given a file containing approx 10 million words, Design a data structure for finding all the anagrams in that set


Database [more]
database question like self joint with tables given by him


--------------------------------------------------------------------------------

Explain how to write a stored procedure in SQL 1


Experience [more]
What sort of commenting standards do you use 1


--------------------------------------------------------------------------------

From 1 - 10, rate c++, c, java, unix, sql skills


--------------------------------------------------------------------------------

Most challenging project 2


--------------------------------------------------------------------------------

How much experience do you have with unix


--------------------------------------------------------------------------------

Talk about your favourite project? What part of a Software Project do you enjoy most?


--------------------------------------------------------------------------------

Tell me about your work experiences in the past?


--------------------------------------------------------------------------------

asked some questions based on my previous job


--------------------------------------------------------------------------------

Lunch - QA manager.

1. tell me a situation when u had to face problems and the requirements were not clear. how did u handle the situation?

2. which is the best error you have caught?

3. which is the worst error u've ever caught?

4. asked about a project on my resume


--------------------------------------------------------------------------------

XML: How have you used XML in your previous projects?


--------------------------------------------------------------------------------

focus on my last project


--------------------------------------------------------------------------------

What was your hardest techincal project?


--------------------------------------------------------------------------------

What was the most interesting thing you have ever done (technical or non technical) ?


--------------------------------------------------------------------------------

Mailed me this code and asked to find the mistakes in the code

class Base {
public:
Base(int numElements) {
m_baseArray = new int[numElements];
}
~Base { //non-virtual
delete [] m_baseArray;
}
private:
int* m_baseArray;
}
class Derived : public Base {
public:
Derived(int numElements) : Base(numElements) {
m_derivedArray = new int[numElements];
}
~Derived() {
delete[] m_derivedArray;
}
private:
int* m_derivedArray;
}
int main(int argc, char** argv) {
Base* base = new Derived(3);
delete base;
return 0;
}

What is wrong with the code ? 5


--------------------------------------------------------------------------------

Projects


Ideas [more]
If you had the entire text to 65 million books in a database, what would you do with it? 9


Java [more]
What is the difference between Inheritance and Interfaces? Under what conditions would you prefer one over the other? 2


--------------------------------------------------------------------------------

What is Garbage Collection in Java. How is it implemented? What kind of algorithms does the garbage collector use? How does it know that references can be collected? What are advantages and disadvantages of garbage collection?


Math & Computation [more]
You have a basket ball hoop and someone says that you can play 1 of 2 games. You get $1000 and one shot to get the hoop. Or, you get three shots and you have to make 2 of 3 shots. Which one do you choose? If p is the probability of making a particular shot, what value of p makes you switch games? 16


--------------------------------------------------------------------------------

Some question about random sampling and buffer read. Don't remember exactly. Had to do with calculating the probabilty and stuff.


--------------------------------------------------------------------------------

When i wasn't certain whether my random function generated with equal probability all permutations, the interviewer asked me to write a formal proof that it works or not and send it to him (really strange).

Proved it with the following and he bought it:
Probabilisticly
card 1 has 52 positions it can fit in
card 2 has 51
card 3 has 50
so on and so forth
card 52 has 1 position to fit in

hence its 52 x 51 x 50 x ... x 1 = 52! can be generated using this shuffle.

Oblivious to me, aparantly this kind of shuffle is used a lot in online card games. Silly me :P


--------------------------------------------------------------------------------

Brainteaser: there is a bar with 25 seats in a line. The people there are anti-social so when they walk in the bar, they always try to find a seat farthest away from others. If one person walks in and find there is no seat are adjecent to nobody, that person will walk away. The bar owner wants as many people as possible. The owner can tell the first customer where to sit. all the other customers will pick the farthest possible seat from others. So where should the first customer sit. 9


--------------------------------------------------------------------------------

Write a program which makes the probablity of getting the even number when a dice is thrown in 72%( some number other than 50%).


Multiple Questions in One [more]
Phone Screen 1: Serialize and deserialize a binary tree/graph
General Unix questions
C++ questions
Design classes to represent a deck of cards


Object Oriented Design [more]
Design the classes and objects for a generic deck of cards that would be used in a poker game 4


--------------------------------------------------------------------------------

Describe the classes and data structures you would use for a file system 23


--------------------------------------------------------------------------------

How would you implement a map (not a map of like a city... just a set of keys which "map" to values")
- Give two data structures you could use
- What is average and worst case insert time, delete time, look up time
- What are pros/cons of each 7


--------------------------------------------------------------------------------

Design a graph class. Write the C++ interface for it. 3


--------------------------------------------------------------------------------

QA engineer -

1. say you have a calculator service running on a server. Automate the process of testing it. i.e. by one click of a buttonu should be able to test it.

2. how would you do the same if you did not have access to the input and expected output. for example. no excel sheet that has the expected values. generate the 2 inputs on the fly. now how would you automate the testing.

3. discuss data structures for NOTEPAD. discuss with reference to bufferer write.


--------------------------------------------------------------------------------

Given two log files, each with a billion usernames (each username appended to the log file), find the usernames existing in both documents in the most efficient manner? Use pseudo-code or code. If your code calls pre-existing library functions, create each library function from scratch. 8


--------------------------------------------------------------------------------

The bigger the ratio between the size of the hash table and the number of data elements, the less chance there is for collision. What is a drawback to making the hash table big enough so the chances of collision is ignorable? 2


--------------------------------------------------------------------------------

Here is a graph of distribution centers and the weight to go from one to another. How would you represent this using a data structure? Code an alogrithm that allows me to check if there is a path from one node to another and what the weight of this path is. 1


--------------------------------------------------------------------------------

Imagine you're implementing the game of chess. Design the classes, objects and heirachies behind it.


--------------------------------------------------------------------------------

Design a deck of cards


--------------------------------------------------------------------------------

Design the data structures and algorithms for a LRU (Least Recently Used) Cache 3


--------------------------------------------------------------------------------

Design a Deck of Cards 1


--------------------------------------------------------------------------------

Asked me to take some time around 1 hour and create an API that could read names,emp ID's,phone numbers, office names in that order from a file and stores them and has the following functionality:

1) getEmployeeById
2) getEmployeeByName
3) getEmployeesByName
4) editEmployeeInfoById
5) editEmployeeInfoByName


--------------------------------------------------------------------------------

Design a data structure for storing sparse arrays. Implement multiplications of such arrays. 2


--------------------------------------------------------------------------------

reverse linked list. Why don't you use recursion? 5


--------------------------------------------------------------------------------

OO design related question? How would you design a class structure for animals in a zoo


--------------------------------------------------------------------------------

Design the classes for Tic Tac Toe. Implement make next move method for the computer player and make sure that the computer wouldn't lose.


--------------------------------------------------------------------------------

Design the game Othello. Write the code to check whether someone has won the game.


--------------------------------------------------------------------------------

Design the classes and data structures for a parking lot


--------------------------------------------------------------------------------

Look within the book. Each person can look at 20% of the book at a time. Only 70% of the book can be served to all users. Design the data structures for this. 4


--------------------------------------------------------------------------------

How would you do a design of a monopoly game (later changed to a chess game)?


--------------------------------------------------------------------------------

How would you design a file system using class diagrams and what data structure would you use?


--------------------------------------------------------------------------------

Discuss the important features of Object Oriented Programming


--------------------------------------------------------------------------------

Model a chess game


System Design [more]
Imagine that there are 7 servers running in parallel. What happens when you need to expand to 20 live? What are issues? What could you do to fix this issue in the future? 6


--------------------------------------------------------------------------------

Algorithm: You have 50,000 html files, some of which contain phone numbers. How would you create a list of all the files which contain phone numbers? 14


--------------------------------------------------------------------------------

You have a website which has 5 reads on a database when it is loaded. Each read takes 7 seconds for a total of 35 seconds, discuss how you could improve the performance? 5


--------------------------------------------------------------------------------

Say you have a system. The design is good. But performance is not good. How would you find where the problem is? went on for about half an hour about it. 3


--------------------------------------------------------------------------------

the "logging in" feature of amazon.com has a problem. isolate the problem.


--------------------------------------------------------------------------------

App server+DB server, solve the querying delay problem...


--------------------------------------------------------------------------------

How would you design the software that runs on an ATM machine? The software should support operations such as checking balance, transfer funds from one account to another, deposits and withdrawals.


Terminology & Trivia [more]
Difference between class and object 16


--------------------------------------------------------------------------------

What's the max look up time for a binary tree 21


--------------------------------------------------------------------------------

What's the point of inheritance? 4


--------------------------------------------------------------------------------

What's the max insertion time for a hash table 8


--------------------------------------------------------------------------------

Why would you use an array vs linked-list 14


--------------------------------------------------------------------------------

What is a Pure Function? 3


--------------------------------------------------------------------------------

What is a linked list? What are its advantages over arrays? 7


--------------------------------------------------------------------------------

exception handling, C++ basics, bitwise operations


--------------------------------------------------------------------------------

What is an array? What is a Linked List, Map.


--------------------------------------------------------------------------------

Complexity of insertion and deletion for linked list.


--------------------------------------------------------------------------------

Unix: You want to kill a process that has been running for a long time, how to do that? 2


--------------------------------------------------------------------------------

XML: Differentiate between SAX and DOM. 1


--------------------------------------------------------------------------------

Data Structures: Time complexities for HashTable, Linked List, Binary Search, Array. 1


--------------------------------------------------------------------------------

Java: Differentiate between final, finally and finalize


--------------------------------------------------------------------------------

Java: How does the synchronized keyword work? What happens when you use it on a static method?


--------------------------------------------------------------------------------

Java: Talk to me about the Java Collections API


--------------------------------------------------------------------------------

MultiThread, Garbage Collection. Tomcat distribute request(Java Spaces), http protocal. Socket programming...


--------------------------------------------------------------------------------

to find a telephone number in dir and subdir (find command is the answer)


--------------------------------------------------------------------------------

What is Polymorphism, how do virtual functions work


--------------------------------------------------------------------------------

When would a program crash in a buffer overrun case. Gave me,
buff[50];
for( int i=0; i <100; i++ )
buff[i] = 0;

What will happen to first 50 bytes assigned, when would the program crash 5


--------------------------------------------------------------------------------

Asked me to describe the difference between final, finally and finalize in java. (The last one is tricky coz we rarely use it) 3


--------------------------------------------------------------------------------

Define "class" and "object."


--------------------------------------------------------------------------------

What does the keyword "final" do when put in front of a Collection in Java? 1


--------------------------------------------------------------------------------

Asked me the differnce between using Abstract class vs interface on a real world problem im working on (at one point he settled for an answer where is said "it's just intuitively wrong" - however, he tried to trick me into justifying using the wrong thing, I had to say that there is no justification for using this technique here, took a little bit of guts but he liked it)


--------------------------------------------------------------------------------

array vs list


--------------------------------------------------------------------------------

Java. final, finalize, finally


--------------------------------------------------------------------------------

What are thread, why are they used in programming?


--------------------------------------------------------------------------------

Difference between polmorphism and inheritance?


--------------------------------------------------------------------------------

Difference between class and object?


--------------------------------------------------------------------------------

Questions about C++/Java and Design Patterns.


--------------------------------------------------------------------------------

When would you create an interface class. 2


--------------------------------------------------------------------------------

How would a copy constructor behave if the class had an Object as a member Variable?


--------------------------------------------------------------------------------

Explain the relationship between Equals and Hashcode in Java. 1


--------------------------------------------------------------------------------

What is a tree? How do you traverse a tree? 1


--------------------------------------------------------------------------------

What's the difference between virtual methods in C++ and Java? 1


--------------------------------------------------------------------------------

What's the difference between == and Equals()?


--------------------------------------------------------------------------------

What is Perfect/Universal hashing?


--------------------------------------------------------------------------------

What are the advantages and disadvantages of function lining?


--------------------------------------------------------------------------------

How do you determine the size of an object in Java?


--------------------------------------------------------------------------------

What is Context Free Grammar? What is it used for?


--------------------------------------------------------------------------------

When does the Operating Systems do a Context Switch? 1


Testing [more]
3. What is black box testing?
4. What do you include in a test plan? 1


--------------------------------------------------------------------------------

Say you have a system. The design is good. But performance is not good. How would you find where the problem is? went on for about half an hour about it. 3


--------------------------------------------------------------------------------

Suppose there is a problem with the address change feature on Amazon.com. How would you test it? What data sets would you test it against? How would you decide on such a data set?


--------------------------------------------------------------------------------

say u are in charge of the "login" fature of amazon.com. TEST IT.


--------------------------------------------------------------------------------

the "logging in" feature of amazon.com has a problem. isolate the problem.


--------------------------------------------------------------------------------

QA engineer -

1. say you have a calculator service running on a server. Automate the process of testing it. i.e. by one click of a buttonu should be able to test it.

2. how would you do the same if you did not have access to the input and expected output. for example. no excel sheet that has the expected values. generate the 2 inputs on the fly. now how would you automate the testing.

3. discuss data structures for NOTEPAD. discuss with reference to bufferer write.


--------------------------------------------------------------------------------

say i give you a universal vegetable cutter which claims that it can cut any kind of vegetable. TEST IT.


--------------------------------------------------------------------------------

How would you test an ATM in a distributed banking system.


--------------------------------------------------------------------------------

How would you load test a web page without using any test tools 3


--------------------------------------------------------------------------------

Suppose there is a problem with calculation of taxes on the amazon.com website. How would you isolate the problem. Once isolated and fixed, how would you go ahead and test it?

184 comments:

Anonymous said...

Hi !.
You may , perhaps curious to know how one can make real money .
There is no need to invest much at first. You may start to get income with as small sum of money as 20-100 dollars.

AimTrust is what you haven`t ever dreamt of such a chance to become rich
The firm represents an offshore structure with advanced asset management technologies in production and delivery of pipes for oil and gas.

Its head office is in Panama with structures around the world.
Do you want to become a happy investor?
That`s your chance That`s what you really need!

I`m happy and lucky, I started to get income with the help of this company,
and I invite you to do the same. It`s all about how to choose a proper partner utilizes your funds in a right way - that`s the AimTrust!.
I take now up to 2G every day, and my first deposit was 1 grand only!
It`s easy to get involved , just click this link http://ogigegira.envy.nu/arotek.html
and go! Let`s take this option together to feel the smell of real money

Anonymous said...

Hi !.
You may , perhaps curious to know how one can manage to receive high yields .
There is no need to invest much at first. You may start earning with as small sum of money as 20-100 dollars.

AimTrust is what you haven`t ever dreamt of such a chance to become rich
AimTrust represents an offshore structure with advanced asset management technologies in production and delivery of pipes for oil and gas.

It is based in Panama with offices everywhere: In USA, Canada, Cyprus.
Do you want to become a happy investor?
That`s your chance That`s what you really need!

I feel good, I began to take up income with the help of this company,
and I invite you to do the same. It`s all about how to choose a proper partner utilizes your money in a right way - that`s AimTrust!.
I make 2G daily, and my first investment was 500 dollars only!
It`s easy to join , just click this link http://tuvijudas.o-f.com/kojyzo.html
and lucky you`re! Let`s take our chance together to feel the smell of real money

Anonymous said...

Good day !.
might , perhaps curious to know how one can collect a huge starting capital .
There is no need to invest much at first. You may begin to receive yields with as small sum of money as 20-100 dollars.

AimTrust is what you need
The company incorporates an offshore structure with advanced asset management technologies in production and delivery of pipes for oil and gas.

Its head office is in Panama with affiliates around the world.
Do you want to become an affluent person?
That`s your choice That`s what you wish in the long run!

I`m happy and lucky, I began to get income with the help of this company,
and I invite you to do the same. It`s all about how to choose a correct partner utilizes your funds in a right way - that`s the AimTrust!.
I make 2G daily, and what I started with was a funny sum of 500 bucks!
It`s easy to start , just click this link http://nunofusi.greatnow.com/nonoga.html
and lucky you`re! Let`s take our chance together to become rich

Anonymous said...

Your blog keeps getting better and better! Your older articles are not as good as newer ones you have a lot more creativity and originality now keep it up!

Anonymous said...

ah at last, I found this article once more. You have few [url=http://tipswift.com]useful tips[/url] for my school project. This time, I won't forget to bookmark it. :)

Anonymous said...

Hi!
You may probably be very curious to know how one can manage to receive high yields on investments.
There is no need to invest much at first.
You may begin earning with a money that usually is spent
on daily food, that's 20-100 dollars.
I have been participating in one company's work for several years,
and I'll be glad to share my secrets at my blog.

Please visit blog and send me private message to get the info.

P.S. I make 1000-2000 per day now.

http://theinvestblog.com [url=http://theinvestblog.com]Online Investment Blog[/url]

Anonymous said...

Good day, sun shines!
There have been times of hardship when I felt unhappy missing knowledge about opportunities of getting high yields on investments. I was a dump and downright pessimistic person.
I have never imagined that there weren't any need in big initial investment.
Now, I feel good, I started take up real money.
It's all about how to choose a correct partner who uses your funds in a right way - that is incorporate it in real business, and shares the income with me.

You can ask, if there are such firms? I have to answer the truth, YES, there are. Please get to know about one of them:
http://theinvestblog.com [url=http://theinvestblog.com]Online Investment Blog[/url]

Anonymous said...

In my opinion you are not right. I can prove it. Write to me in PM, we will talk.

Anonymous said...

how to unlock iphone 4
unlock iphone 4
unlock iphone 4

http://www.msstudentlounge.com/tabid/60/default.aspx?id=1276 http://emergenturbanism.net/2010/04/how-our-planning-process-prevents-real-planning
I think Limewire is simply a Peer to Peer program for file sharing. If that's right then surely you can get a virus if the person you get a file from has it. Video files do not contain viruses. Neither do mp3 or jpg files. Viruses can be find in executable files (.exe) .dll files and a few other types.
iphone 4 unlock iphone 4 unlock

how to unlock iphone 4 [url=http://unlockiphone44.com]how to unlock iphone 4[/url] iphone 4 unlock how to unlock iphone 4

Anonymous said...

Hi

I read this post two times.

I like it so much, please try to keep posting.

Let me introduce other material that may be good for our community.

Source: Amazon interview questions

Best regards
Henry

Anonymous said...

cheap xanax online xanax effects duration - generic xanax round white

Anonymous said...

xanax online no prescription what is xanax good for - xanax for anxiety yahoo

Anonymous said...

buy tramadol online buy cheap tramadol in usa - what is tramadol 50 mg street value

Anonymous said...

buy tramadol for dogs can dog overdose tramadol - buy tramadol online usa

Anonymous said...

buy carisoprodol carisoprodol overdose dosage - carisoprodol 136

Anonymous said...

buy tramadol online tramadol withdrawal is hell - tramadol ultram experience

Anonymous said...

generic tramadol tramadol 50 mg order online - tramadol 50 mg side effects

Anonymous said...

generic xanax xanax reviews - xanax side effects in men

Anonymous said...

carisoprodol 350 mg carisoprodol side effects pregnancy - carisoprodol unrecognized drug abuse

Anonymous said...

buy tramadol online tramadol hydrochloride for dogs side effects - long term tramadol addiction

Anonymous said...

buy carisoprodol carisoprodol 350 mg controlled substance - can carisoprodol 350 mg get you high

Anonymous said...

buy tramadol online tramadol dosage dogs pain - tramadol dosage chart for dogs

Anonymous said...

cialis online cialis versus viagra reviews - buy cialis no prescription us

Anonymous said...

cialis online cheap cialis in the us - cialis online in usa

Anonymous said...

buy cialis online best site buy cialis online - cialis daily 20 mg

Anonymous said...

cialis online price comparison for cialis - buy cialis

Anonymous said...

cialis online buy cialis canadian pharmacy - cialis price euro

Anonymous said...

buy tramadol tramadol 100mg buy online - tramadol no prescription free shipping

Anonymous said...

20000 :) buy effexor no prescription - venlafaxine online no prescription http://www.effexorfastorder.net/#venlafaxine-online-no-prescription , [url=http://www.effexorfastorder.net/#cheap-effexor-xr ]cheap effexor xr [/url]

Anonymous said...

http://landvoicelearning.com/#97734 tramadol online for cheap - tramadol generic ultracet

Anonymous said...

learn how to buy tramdadol tramadol 50 mg compared to lortab - buy tramadol online pay cod

Anonymous said...

07 cheap prednisone - cheap prednisone online http://www.prednisoneonlinerx.net/index.html, [url=http://www.prednisoneonlinerx.net/index.html]cheap prednisolone [/url]

Anonymous said...

http://landvoicelearning.com/#74967 tramadol dosage maximum dose - tramadol hcl user reviews

Anonymous said...

buy tramadol medication buy tramadol no prescription overnight - cheap tramadol online cod

Anonymous said...

http://landvoicelearning.com/#97734 order tramadol cod saturday delivery - buy tramadol sr 100 mg

Anonymous said...

2, order terbinafine - buy terbinafine tablets online http://www.fastlamisilorder.net/index.html, lamisil generic

Anonymous said...

tramadol online tramadol vs norco - buy tramadol 150 mg

Anonymous said...

buy tramadol order tramadol from usa - tramadol hcl 400 mg

Anonymous said...

buy tramadol buy cheap tramadol online usa - tramadol 50mg no prescription

Anonymous said...

Excellent beat ! I would like to apprentice whilst
you amend your site, how can i subscribe for a weblog site?

The account aided me a applicable deal. I were a little bit familiar of this
your broadcast provided shiny clear idea

Also visit my site; surveys earn money
my web site > get money for free

Anonymous said...

It's enormous that you are getting ideas from this article as well as from our discussion made at this time.

Take a look at my weblog ... easy way to make money online for free
Also see my site - make money online from home for free

Anonymous said...

Hi there just wanted to give you a brief heads up and let you know a few of the pictures aren't loading properly. I'm not sure why but I think its a linking issue.
I've tried it in two different internet browsers and both show the same outcome.

Here is my page :: Binary Options Trading

Anonymous said...

Hurrah! In the end I got a website from where I
be able to actually obtain helpful information regarding my study and knowledge.


Also visit my blog post ... binary options review

Anonymous said...

Wow, fantastic blog layout! How long have you been blogging for?

you made blogging look easy. The overall look of your site is fantastic, as well
as the content!

Review my site how to earn quick money online

Anonymous said...

Ahaa, its nice discussion concerning this piece of writing here at this
website, I have read all that, so now me also commenting here.


Here is my blog - ways to make fast money online

Anonymous said...

magnificent issues altogether, you simply received a emblem
new reader. What could you recommend in regards to your publish that you made a few days ago?
Any certain?

Here is my website; binary stock options
my web page > cedar finance how to withdraw

Anonymous said...

Nice blog here! Additionally your site a lot up very fast!
What host are you the usage of? Can I am getting your affiliate link to your host?
I desire my website loaded up as fast as yours
lol

Check out my blog make money on the internet

Anonymous said...

This is really interesting, You are an overly skilled blogger.

I have joined your feed and stay up for looking for extra of your fantastic post.
Additionally, I've shared your site in my social networks

Stop by my site: how to make free money online

Anonymous said...

Hello, i believe that i noticed you visited my blog thus i came to return the prefer?
.I am trying to find issues to improve my site!
I guess its good enough to use a few of your ideas!
!

Here is my web blog :: www.youtube.com/watch?v=VMJkb-bhjiI

Anonymous said...

I’m not that much of a internet reader to be honest but your blogs really nice, keep it up!

I'll go ahead and bookmark your website to come back in the future. All the best

Feel free to visit my web-site slots for cash

Anonymous said...

Have you ever considered writing an e-book or guest authoring on other blogs?

I have a blog centered on the same information you discuss and
would really like to have you share some stories/information.

I know my subscribers would appreciate your work.
If you're even remotely interested, feel free to shoot me an e mail.

Here is my page play slots for real money online

Anonymous said...

It's really a nice and useful piece of information. I am glad that you simply shared this useful info with us. Please keep us up to date like this. Thanks for sharing.

Feel free to visit my site: usa on line casino

Anonymous said...

I know this web page presents quality based content and additional data, is there any other site which presents these things in quality?



Feel free to visit my web blog :: online jobs

Anonymous said...

After looking into a few of the articles on your web site, I seriously like your technique of blogging.
I book-marked it to my bookmark website list and will be checking back in
the near future. Please visit my website as well
and let me know your opinion.

Here is my website; work at home jobs for moms

Anonymous said...

Thanks for the marvelous posting! I truly enjoyed reading it,
you might be a great author. I will remember to bookmark your
blog and may come back in the future. I want to encourage yourself to continue your great
writing, have a nice holiday weekend!

my web page ... 10 easy Ways to make money

Anonymous said...

I am not positive the place you are getting your information,
however great topic. I must spend some time learning more or working out
more. Thank you for excellent information I used to be
in search of this information for my mission.

Feel free to surf to my web blog: best forex software Trading

Anonymous said...

There is definately a great deal to learn about this topic.
I really like all the points you have made.

Take a look at my blog - trading options for dummies

Anonymous said...

My partner and I stumbled over here by a different
web address and thought I might as well check things out. I like what I see so now i'm following you. Look forward to looking into your web page yet again.

Feel free to visit my homepage :: traderushg.com
my web page - traderush

Anonymous said...

It's in fact very difficult in this active life to listen news on TV, so I just use world wide web for that reason, and get the hottest information.

My homepage; define commodity

Anonymous said...

With havin so much written content do you ever run into any
problems of plagorism or copyright infringement? My blog has a
lot of completely unique content I've either written myself or outsourced but it looks like a lot of it is popping it up all over the internet without my authorization. Do you know any solutions to help stop content from being ripped off? I'd definitely appreciate it.



my homepage; Online casino usa
my website :: online win money

Anonymous said...

You made some decent points there. I looked on the net to find out more about the issue
and found most individuals will go along with your views on this
web site.

Feel free to visit my web page: online Geld verdienen

Anonymous said...

Hello, after reading this awesome piece of writing i am also cheerful to share
my experience here with colleagues.

Feel free to visit my webpage: what is the best work from home business

Anonymous said...

With havin so much content and articles do you ever run into any problems of plagorism or copyright infringement?
My website has a lot of completely unique
content I've either created myself or outsourced but it appears a lot of it is popping it up all over the internet without my agreement. Do you know any techniques to help protect against content from being ripped off? I'd truly appreciate it.


Here is my homepage: work from home jobs in pa

Anonymous said...

Saved as a favorite, I love your web site!

Here is my website penny stocks to watch 2011
my web site - how to buy penny stocks

Anonymous said...

I do not even know how I ended up here, but I thought this post was good.

I do not know who you are but certainly you are going to a famous blogger if
you are not already ;) Cheers!

my blog post; forex trading signal

Anonymous said...

This paragraph provides clear idea in favor of the new viewers of blogging,
that genuinely how to do blogging.

Feel free to visit my website - earn money online home

Anonymous said...

Right away I am going to do my breakfast, once having my
breakfast coming again to read more news.

Feel free to surf to my page ... stock market trading hours

Anonymous said...

These are truly wonderful ideas in about blogging.
You have touched some nice points here. Any way keep up wrinting.


Feel free to surf to my homepage - ways to make money quick

Anonymous said...

What's up, I check your blogs daily. Your story-telling style is awesome, keep up the good work!

My web page ... Best Making Money Online

Anonymous said...

I enjoy, cause I found just what I was taking a look for.
You've ended my four day long hunt! God Bless you man. Have a great day. Bye

Here is my web blog smart ways to make money
My web page - how to make lots of money fast

Anonymous said...

I know this if off topic but I'm looking into starting my own weblog and was wondering what all is required to get setup? I'm assuming having a
blog like yours would cost a pretty penny? I'm not very internet smart so I'm not 100% sure. Any recommendations or advice would be greatly appreciated. Thank you

my page: how to earn extra money on the side

Anonymous said...

Can I just say what a comfort to discover somebody who actually knows what they are discussing on the net.

You actually realize how to bring a problem to light and make it important.
More and more people really need to check this out
and understand this side of your story. I can't believe you're not more popular since you certainly possess the gift.


my webpage - ways to make money fast and easy

Anonymous said...

Hi there! This is my first comment here so I just wanted to give a quick shout out and tell you I truly enjoy reading your articles.
Can you recommend any other blogs/websites/forums that cover the same topics?
Thank you!

Here is my web-site :: legit online work from home jobs

Anonymous said...

You really make it seem so easy with your presentation but I find this matter to be actually something which I think I would never understand.
It seems too complex and very broad for me. I am looking
forward for your next post, I'll try to get the hang of it!

Also visit my blog post - the best ways to make money online

Anonymous said...

Do you have a spam issue on this website; I also am a blogger, and I was wondering
your situation; we have developed some nice methods and we are
looking to trade techniques with others, be sure to shoot me an email if interested.


My web page ... i need money and fast

Anonymous said...

Howdy! This article could not be written much better!
Going through this post reminds me of my previous roommate!
He constantly kept preaching about this. I most certainly will send
this post to him. Pretty sure he'll have a great read. Thank you for sharing!

Feel free to visit my page search jobs online

Anonymous said...

I am regular visitor, how are you everybody? This article
posted at this website is actually good.

Also visit my webpage :: ways to make money online

Anonymous said...

It's genuinely very complex in this busy life to listen news on Television, so I only use the web for that reason, and take the latest news.

My webpage :: forex trading signals

Anonymous said...

Ahaa, its fastidious discussion regarding this piece
of writing at this place at this blog, I have read all that, so now me also commenting here.


my blog :: currency trading Forex

Anonymous said...

I know this site provides quality depending articles or reviews and additional
information, is there any other site which presents these stuff in quality?


Also visit my web site ... Online work at home jobs

Anonymous said...

Excellent blog right here! Additionally your site so
much up very fast! What web host are you the use of?

Can I get your affiliate link for your host? I desire my web site loaded up as quickly as yours lol

My web blog ... how to make money online

Anonymous said...

Spot on with this write-up, I honestly feel this site needs much more attention.
I'll probably be returning to read through more, thanks for the information!

Visit my web blog ... how to find a job in nyc

Anonymous said...

Remarkable issues here. I am very glad to look your post.
Thank you so much and I am taking a look ahead to touch you.
Will you please drop me a e-mail?

Feel free to visit my site ... day trading scam

Anonymous said...

You really make it seem so easy with your presentation
but I find this topic to be actually something that I think I would never understand.
It seems too complicated and extremely broad for me. I am looking forward
for your next post, I will try to get the hang of it!

Visit my blog: best online jobs from home

Anonymous said...

Every weekend i used to visit this website, because i wish for enjoyment, since this this web site conations genuinely nice funny information too.


Also visit my web page - Real online Slots

Anonymous said...

wonderful issues altogether, you just gained a new reader.
What could you suggest about your post that you simply made a few days
in the past? Any positive?

Here is my web page :: finding a job after college

Anonymous said...

Its like you read my mind! You seem to know a lot about this,
like you wrote the book in it or something. I think that
you could do with some pics to drive the message home a bit, but instead of that, this is great blog.
A great read. I'll definitely be back.

Also visit my web-site :: learn forex trading

Anonymous said...

Hi there! Quick question that's completely off topic. Do you know how to make your site mobile friendly? My website looks weird when browsing from my iphone 4. I'm
trying to find a template or plugin that might be
able to correct this issue. If you have any suggestions, please share.
Thank you!

Stop by my web site; home based data entry jobs

Anonymous said...

Hello everybody, here every person is sharing such familiarity, therefore it's nice to read this web site, and I used to pay a quick visit this website all the time.

Also visit my web page - how to make fast Easy money online

Anonymous said...

buy tramadol online cod overnight tramadol ultram seizures - tramadol 37.5 325 dosage

Anonymous said...

First of all I want to say excellent blog! I had a quick question that I'd like to ask if you do not mind. I was interested to find out how you center yourself and clear your head before writing. I've had
trouble clearing my mind in getting my ideas out there.
I do enjoy writing however it just seems like the first 10 to
15 minutes are usually lost simply just trying to figure out how to begin.
Any suggestions or hints? Cheers!

Stop by my page: Way To Make money fast

Anonymous said...

If some one wants to be updated with newest technologies after that he must be go to see this web site and
be up to date every day.

Feel free to surf to my blog: how to make online money fast

Anonymous said...

Hello, i think that i saw you visited my website so i came to
“return the favor”.I'm trying to find things to improve my web site!I suppose its ok to use some of your ideas!!

my website how to make quick money online

Anonymous said...

buy tramadol free shipping buy tramadol cheap online no prescription - just pills order tramadol online

Anonymous said...

This is really interesting, You're an overly professional blogger. I have joined your feed and look forward to in the hunt for more of your magnificent post. Additionally, I have shared your site in my social networks

My web-site; best work from home business

Anonymous said...

Hey there! Would you mind if I share your blog with my myspace group?
There's a lot of people that I think would really enjoy your content. Please let me know. Thank you

Have a look at my web blog; how to make money off a website

Anonymous said...

Wow that was odd. I just wrote an extremely long comment but after
I clicked submit my comment didn't show up. Grrrr... well I'm
not writing all that over again. Anyhow, just wanted to say wonderful blog!



Here is my web blog - legit work from home

Anonymous said...

We stumbled over here different web address and thought I might as well check things out.
I like what I see so i am just following you. Look forward
to looking over your web page for a second time.

my web site; how to make money from home online

Anonymous said...

I have read so many content on the topic of the blogger lovers except this paragraph is really
a pleasant post, keep it up.

my web page :: trading binary options

Anonymous said...

Someone essentially lend a hand to make severely posts I'd state. That is the very first time I frequented your web page and thus far? I amazed with the analysis you made to make this particular publish amazing. Magnificent process!

Also visit my site: http://www.youtube.com/watch?v=opdUxdbSOh0

Anonymous said...

It's fantastic that you are getting thoughts from this article as well as from our discussion made at this time.

Feel free to surf to my webpage; http://www.youtube.com/watch?v=LITm1tEpdAw

Anonymous said...

http://staam.org/#50589 buy tramadol hcl 50 mg - legal buy tramadol online united states

Anonymous said...

Awesome post.

Also visit my page :: high paying jobs in the us

Anonymous said...

This is a topic that is close to my heart... Best wishes!

Exactly where are your contact details though?

Visit my web site ... cheapest health insurance

Anonymous said...

Thanks for finally writing about > "Amazon interview question Collection"
< Loved it!

Here is my web-site; how to make fast money
online

Anonymous said...

If some one wants expert view concerning running a blog after that i advise him/her
to pay a quick visit this web site, Keep up the
pleasant job.

Here is my web site :: http://www.youtube.com/watch?v=ErFAXQcDoRU

Anonymous said...

Right away I am going to do my breakfast,
later than having my breakfast coming over again to read additional news.


Look into my page :: forex trading review

Anonymous said...

Hi there, just wanted to say, I enjoyed this post.
It was inspiring. Keep on posting!

Feel free to visit my page; oil futures trading

Anonymous said...

If some one desires to be updated with newest technologies then he must be pay a visit this
site and be up to date all the time.

my web site - work ideas for stay at home moms

Anonymous said...

Hmm is anyone else encountering problems with the
pictures on this blog loading? I'm trying to determine if its a problem on my end or if it's the
blog. Any responses would be greatly appreciated.


Feel free to visit my weblog; forex currency online trading

Anonymous said...

Hi there friends, its great post concerning
tutoringand entirely defined, keep it up all the time.

Here is my website ... work at home business

Anonymous said...

Hi, I log on to your blog daily. Your humoristic style is awesome, keep it
up!

my homepage; pokemon soul silver trade

Anonymous said...

Good information. Lucky me I came across your blog by chance
(stumbleupon). I have bookmarked it for later!

Check out my blog ... job work at home

Anonymous said...

Hi there this is somewhat of off topic but I was wondering if
blogs use WYSIWYG editors or if you have to manually code with HTML.

I'm starting a blog soon but have no coding skills so I wanted to get advice from someone with experience. Any help would be enormously appreciated!

Look at my page kitchen in northern virginia

Anonymous said...

I have been browsing online greater than 3 hours today, yet I by no means discovered any fascinating article like yours.

It's pretty value enough for me. In my view, if all web owners and bloggers made just right content material as you did, the internet shall be much more useful than ever before.

my weblog; binary options demo

Anonymous said...

Thank you for the good writeup. It actually used to be a leisure account it.

Look advanced to more introduced agreeable from you!
However, how can we be in contact?

Feel free to surf to my web page: cnbc fast money

Anonymous said...

Fascinating blog! Is your theme custom made or did you download it from somewhere?
A theme like yours with a few simple tweeks would really make
my blog shine. Please let me know where you got your theme.

Thanks

Also visit my web blog - best ways to make money online

Anonymous said...

Hey! I'm at work surfing around your blog from my new iphone! Just wanted to say I love reading your blog and look forward to all your posts! Carry on the superb work!

Also visit my blog post :: make money from home online

Anonymous said...

I will immediately take hold of your rss as I can not in finding your e-mail subscription
link or newsletter service. Do you've any? Please permit me recognize in order that I may subscribe. Thanks.

Here is my page http://www.youtube.com/watch?v=JoRWJriSgKc

Anonymous said...

Excellent beat ! I wish to apprentice while you amend your site, how can
i subscribe for a blog website? The account helped me a acceptable deal.

I had been tiny bit acquainted of this your broadcast offered bright clear concept

my web blog; http://www.youtube.com/watch?v=pwex99npRdc

Anonymous said...

I got this web page from my buddy who informed me regarding this
website and at the moment this time I am browsing this website and reading very informative articles
or reviews at this time.

My homepage: http://www.youtube.com/watch?v=gtCm82Itxoc

Anonymous said...

Hi just wanted to give you a brief heads up and let you know a few of
the pictures aren't loading properly. I'm not sure why but I think its a
linking issue. I've tried it in two different web browsers and both show the same outcome.

my web-site; work from home online jobs

Anonymous said...

buy tramadol usa buy tramadol cod fedex - can you buy tramadol online legally

Anonymous said...

buy tramadol in florida buy tramadol online mastercard overnight - buy tramadol overnight delivery

Anonymous said...

Ηello to еvery onе, it's in fact a fastidious for me to visit this web page, it consists of priceless Information.

Feel free to surf to my page reputation management

Anonymous said...

buy lipitor india or buy seroquel xr online no prescription or purchase abilify

Anonymous said...

Hey there! I could have sworn I've been to this website before but after reading through some of the post I realized it's new to me.
Anyways, I'm definitely happy I found it and I'll be bookmarking and checking back frequently!


My web site :: reputation management for individuals

Anonymous said...

Hеy veгу cool web sitе!! Guy .. Excellеnt .

. Wondeгful .. I'll bookmark your blog and take the feeds also? I'm
hаρpу tο sееk out so mаny helpful іnfo right here in the put up, we
neеd work out more techniqueѕ in this regard, thаnk you for sharing.
. . . . .

Here is my wеblog makemoney24.tv

Anonymous said...

I’m nοt that muсh of a onlіne readеr
to be hоnest but уour blogs rеаlly nice, keеp it up!
I'll go ahead and bookmark your website to come back later on. Cheers

Also visit my blog post: Lloyd Irvin

Unknown said...
This comment has been removed by the author.
Unknown said...
This comment has been removed by the author.
Chris Nyles said...

This is a great blog and would remain a reference for me for all the future interviews. For system design interviews I have found following two Quora answers quite helpful:

https://www.quora.com/How-can-I-learn-about-Design-questions-asked-in-programming-interviews
https://www.quora.com/What-are-the-best-design-interview-questions-youve-ever-asked-or-been-asked

Also, do read this course, it has discussed a good set of design questions: https://www.educative.io/collection/5668639101419520/5649050225344512

Invitation Cards Online said...

Your posting provide an exclusive information, I appreciate this post. Thanks for sharing this

Karthika Shree said...

It's interesting that many of the bloggers to helped clarify a few things for me as well as giving.Most of ideas can be nice content.The people to give them a good shake to get your point and across the command.
Java Training in Chennai

Unknown said...

Hi Deepak,

Thanks for highlighting this and indicating about Amazon interview question Collection where more study and thought is necessary.

When I log into the AWS Console via Firefox 57 (and even sometimes Chrome) the body of the console fails to load a large percentage of the time. When this happens, I can only see the navbar and the footer of the page, and the console is rendered useless to me. This seems to happen periodically and then resolves after some waiting. Sometimes even the navbar and footer don't render and I just see some copyright text in the corner. This seriously impairs my ability to use the console and could be revenue-impacting.

The C state and P state are used as Processors have cores; these cores need thermal headroom to boost their performance. Since all the cores are on the processor the temperature should be kept at an optimal state so that all the cores can perform at the highest performance.

Once again thanks for your tutorial.

Thank you,
Kevin

Unknown said...

Halo Deepak,

In total awe…. So much respect and gratitude to you folks for pulling off such amazing blogs without missing any points on the Amazon interview question Collection". Kudos!

I joined the Amazon affiliate site and received my access key id and my secret key.

There was a problem downlaoding and saving the secret key so I created another one.

I am submitting this information to Amazon to complete my affilaite site but Amazon is accepting the information. AWS Training

I would appreciate any information as to why this may be ocurring.

I look forward to see your next updates.

Kind Regards,
iRENE hYNES

Unknown said...

Hi Mate,


Such vivid info on the "Amazon interview question Collection" Flabbergasted! Thank you for making the read a smooth sail!


I am facing trouble with Amazon RDS since last 2 weeks and need support from them but I cant ask them as my account is on Basic. I changed my status from basic to developer today and its still basic. AWS Training USA





I read multiple articles and watched many videos about how to use this tool - and was still confused! Your instructions were easy to understand and made the process simple.


Kind Regards,
Ajeeth

gowsalya said...

The knowledge of technology you have been sharing thorough this post is very much helpful to develop new idea. here by i also want to share this.
Devops Training in Chennai

Devops Training in Bangalore

Devops Training in pune

Devops training in tambaram

nilashri said...

Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.

Data Science Training in Chennai
Data science training in bangalore
Data science online training
Data science training in pune
Data science training in kalyan nagar
Data Science with Python training in chenni

Mounika said...

This is very good content you share on this blog. it's very informative and provide me future related information.
python training institute in chennai
python training in Bangalore
python training in pune
python online training

simbu said...

This is beyond doubt a blog significant to follow. You’ve dig up a great deal to say about this topic, and so much awareness. I believe that you recognize how to construct people pay attention to what you have to pronounce, particularly with a concern that’s so vital. I am pleased to suggest this blog.

java training in chennai | java training in bangalore

java training in tambaram | java training in velachery

java training in omr | oracle training in chennai

Unknown said...

Woah this blog is wonderful i like studying your posts. Keep up the great work! You understand, lots of persons are hunting around for this info, you could help them greatly.

Blueprism training in Chennai

Blueprism training in Bangalore

simbu said...

You’ve written a really great article here. Your writing style makes this material easy to understand.. I agree with some of the many points you have made. Thank you for this is real thought-provoking content
java training in chennai | java training in bangalore


java training in tambaram | java training in velachery

saimouni said...

Useful information.I am actual blessed to read this article.thanks for giving us this advantageous information.I acknowledge this post.and I would like bookmark this post.Thanks
online Python certification course
python training in OMR
python training course in chennai

sathya shri said...

Awesome! Education is the extreme motivation that open the new doors of data and material. So we always need to study around the things and the new part of educations with that we are not mindful.
angularjs Training in btm

angularjs Training in electronic-city

angularjs online Training

angularjs Training in marathahalli

angularjs interview questions and answers

Anbarasan14 said...

One of the best blogs that I have read till now. Thanks for your contribution in sharing such a useful information.

Spoken English Classes in Chennai
Best Spoken English Classes in Chennai
Spoken English in Chennai
English Speaking Classes near me
IELTS Coaching in Chennai
IELTS Training in Chennai
IELTS Classes in Chennai

Sadhana Rathore said...

The given information was excellent and useful. This is one of the excellent blog, I have come across. Do share more.
Machine Learning course in Chennai
Machine Learning Training in Chennai
Data Science Course in Chennai
Data Science Training in Chennai
DevOps certification in Chennai
DevOps Training in Chennai
Machine Learning Training in OMR
Machine Learning Training in Porur

jvimala said...

Really awesome blog. Your blog is really useful for me
Regards,
Best Devops Training in Chennai | Best Devops Training Institute in Chennai

priya said...

I really appreciate this post. I’ve been looking all over for this! Thank goodness I found it on Bing. You’ve made my day! Thx again!

Microsoft Azure online training
Selenium online training
Java online training
Java Script online training
Share Point online training

jefrin said...

Your very own commitment to getting the message throughout came to be rather powerful and have consistently enabled employees just like me to arrive at their desired goals.
Data science Course Training in Chennai | Data Science Training in Chennai
RPA Course Training in Chennai | RPA Training in Chennai
AWS Course Training in Chennai | AWS Training in Chennai
Devops Course Training in Chennai | Best Devops Training in Chennai
Selenium Course Training in Chennai | Best Selenium Training in Chennai
Java Course Training in Chennai | Best Java Training in Chennai
Web Designing Training in Chennai | Best Web Designing Training in Chennai

Content Webpage said...

If you have Natural Curls or Curly Hair, you are just blessed. You can experiment with many Hairstyles which will Look Stylish here we tell about top best and easy Curly Hairstyles

Manipriyan said...

Thanks for sharing


Splunk Training in Chennai

Tableau Training in Chennai

Automation anywhere Training in Chennai

AWS Training in Chennai

Nisha San said...

Hey, would you mind if I share your blog with my twitter group? There’s a lot of folks that I think would enjoy your content. Please let me know. Thank you.
Java Training in Chennai | J2EE Training in Chennai | Advanced Java Training in Chennai | Core Java Training in Chennai | Java Training institute in Chennai

Free Online Betting said...

I see your blog daily, it is crispy to study.

Please feel free visit my websites:
gclubpok9
gclubonline168
slotscr168
aset4bet

salman said...

go to
go to
go to
go to
go to
go to

Azure DevOps said...

Informative blog. Thank you for sharing this with us.
AWS Online Training

Blog said...

kitchen remodeling

Inсrеаѕе your Hоmе’ѕ Vаluе- Whеthеr you аrе рlаnning on selling уоur hоmе or not, inсrеаѕing уоur hоmе’ѕ vаluе iѕ always a ѕоund dесiѕiоn.

A ԛuаlitу rеmоdеling рrоjесt can inсrеаѕе уоur hоmеѕ mаrkеtаblе in tоdау’ѕ unsure hоuѕing market.
Besides, imрrоvеmеntѕ to your hоmе can help during rеfinаnсing dеlibеrаtiоnѕ as wеll as hеlрing tо ѕесurе роtеntiаl futurе loans.

nowfirstviral said...

I am WOrking Casino WEbsite Please Check my Casino WEbsite and your website very nice and great 우리카지노

Susmita Sen said...

I really appreciate this post. I’ve been looking all over for this! Thank goodness I found it on Bing. You’ve made my day! Thx again!
triple c online mock test

Blog said...

The AntMiner S9 Hydro will make a breakthrough in cooling and noise reduction. It hits a hashrate of 18.0TH/s with a power consumption of 1728w. With the advanced water cooling technology, noise and heat are reduced to the minimum level.

We will introduce the setting-up for the Antminer S9 Hydro in this piece.




Get ready
Miner model: Antminer S9 Hydro
Power supply: Antminer APW5 power supply
Accessories: ethernet cord, a power cable and a computer (for configuration), the water-cooling set antminer s9 hydro tutorial

Unknown said...

Electronic printing had reasonable thought with immense stunt: Roll ups, Protection screens, Security stickers, Tarpaulins, Photocalls, Vinyls, Banners... FREE new astounding startling unforeseen development and in 24h. High bore. 75 years of experience.

Carrer Motors, 360 - CP 08908

L'Hospitalet de Llobregat (Barcelona) Spain
Electronic printing had reasonable thought with immense stunt: Roll ups, Protection screens, Security stickers, Tarpaulins, Photocalls, Vinyls, Banners... FREE new astounding startling unforeseen development and in 24h. High bore. 75 years of experience.

Carrer Motors, 360 - CP 08908

L'Hospitalet de Llobregat (Barcelona) Spain

Unknown said...

Virtual Private Servers provide clients with the security of their own server. We can manage and install all the necessary tools you need to start your online presence and grow it into the success your envision. Control bandwidth, domains, disk space, email setup, design tools, database creation, and more. Give access to users and control multiple domains from one main WHM panel.
digital marketing

Unknown said...

veterinary services

Hello, my name is Dr. Erica Johnson-Dunphy. I grew up in Poughkeepsie, NY and went to college in Biddeford, Maine where I received a double major in Marine Biology and Psychobiology. I applied to vet school at Ross University in St. Kitts and Nevis in 2005 and was accepted.

nisha said...

The Blog is really Creative.this blog was satisfying the queries easily for the Beginner.

Data Science Training Course In Chennai | Data Science Training Course In Anna Nagar | Data Science Training Course In OMR | Data Science Training Course In Porur | Data Science Training Course In Tambaram | Data Science Training Course In Velachery

divya said...

Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.thanks a lot.
Ai & Artificial Intelligence Course in Chennai
PHP Training in Chennai
Ethical Hacking Course in Chennai Blue Prism Training in Chennai
UiPath Training in Chennai

aarthi said...

It is very helpful for interview preparation.I am waiting for the future updates.
Java training in Chennai | Certification | Online Course Training | Java training in Bangalore | Certification | Online Course Training | Java training in Hyderabad | Certification | Online Course Training | Java training in Coimbatore | Certification | Online Course Training | Java training in Online | Certification | Online Course Training


devi said...

Very interesting blog. Many blogs I see these days do not really provide anything that attracts others, but believe me the way you interact is literally awesome.You can also check my articles as well.. it is really explainable very well and i got more information from your blog. Please, continue to give me such valuable posts.Data Science Training In Chennai

Data Science Online Training In Chennai

Data Science Training In Bangalore

Data Science Training In Hyderabad

Data Science Training In Coimbatore

Data Science Training

Data Science Online Training

devi said...

It is really wonderful and awesome thus it is very much useful for me to understand many concepts and helped me a lot. it is really explainable very well and i got more information from your blog. Please, continue to give me such valuable posts.Data Science Training In Chennai

Data Science Online Training In Chennai

Data Science Training In Bangalore

Data Science Training In Hyderabad

Data Science Training In Coimbatore

Data Science Training

Data Science Online Training

suresh said...

Really very informative and creative contents. This concept is a good way to enhance the knowledge.thanks for sharing. please
DevOps Training in Chennai

DevOps Course in Chennai

SEO service said...

If you want to know how much a bifolds door costs in London, you have come to the right place. If you are struggling to figure out the installation charges for bifolds doors London, you can get an idea in noise protection

Devi said...

If Oracle DataBase Admin is a job that you're dreaming of, then we, Infycle are with you to make it into reality. Infycle Technologies provides the best Oracle DBA training in Chennai, along with various levels of highly demanded software courses such as Java, Python, Hadoop, Big Data, etc., in 100% full-fledged hands-on practical training with specialized tutors in the field. In addition to that, the mock interviews will be assigned for the candidates, so that, they can face the interviews with full confidence and can get their job for what they trained. For getting all these, call 7502633633 and get a free demo classTop Oracle DBA Training in Chennai

TENDE DA SOLE ROMA said...

This post is useful and I became more acquainted with a ton. I wish more much obliged for this sort of post.
earthhershop

savas said...

당신이 내 마음을 읽는 것과 같습니다! 당신은 책을 쓴 것처럼 이것에 대해 너무 많이 아는 것 같습니다. 나는 당신이 메시지를 집으로 가져 가기 위해 몇 장의 사진으로 할 수 있다고 생각하지만 그 대신 이것은 훌륭한 블로그입니다. 관련 정보를 제공하는 블로그를 방문하십시오.메이저놀이터
감사!

Rajendra Cholan said...

PYTHON COURSE IN CHENNAI | INFYCLE TECHNOLOGIES:

Infycle Technologies is the best Python training in Chennai organization in Chennai and is widely known for its outstanding performance in providing the best software training in Chennai. It is the ultimate goal of Infycle Technologies to provide high-quality software programming training in a 100% safe location and to build a solid career for every individual and young professional in the IT industry. Most importantly, students like 100% hands-on training, which is the specialty of Infycle Technologies. To continue your career on a solid foundation, please contact Infycle Technologies at 7502633633.
Best training center in Chennai

kishor said...

nices information thanku so much
nices
click here

Online Helmet & Other Acessories Store said...

Shop for the latest Redmi mobiles from Helmet Don at the best prices in India. Xiaomi smartphones include Mi Series, Mi Note Series, Redmi Series, Pocophone, Mi Max Series, Mi Mix Series, and the Blackshark.
HelmetDon
dslr-camera
oppo-phones

UNIQUE ACADEMY said...

During the current situation of this pandemic, unique is providing the best CS video classes for CSEET and executive level examination, so that there is no chance of downfall in the results of the students
cs executive
freecseetvideolectures/
UNIQUE ACADEMY

Rajendra Cholan said...

Infycle Technologies, the top software training institute and placement center in Chennai offers the Digital Marketing course in Chennai for freshers, students, and tech professionals at the best offers. In addition to the Oracle training, other in-demand courses such as DevOps, Data Science, Python, Selenium, Big Data, Java, Power BI, Oracle will also be trained with 100% practical classes. After the completion of training, the trainees will be sent for placement interviews in the top MNC's. Call 7504633633 to get more info and a free demo.

Best software training in chennai

Vijay kumar said...

गुड मॉर्निंग शायरी In Hindi

UNIQUE ACADEMY said...

hi thanku for sharning this infromation thanku so much
cs executive
freecseetvideolectures/

Freelancer baghel said...

Bharat Mein Kul Antarrashtriya Stadium Kitne Hain
UP BTE Latest Admit Card And Result Download
Idea caller tone kaise lagaate aur hataye
Cricket mei career kaise banaye in hindi
Google Drive Kya Hai In Hindi
ThopTv App Download Kaise Karen
AP37 Launcher Review In Hindi

Life style said...

https://techvilly.com/how-to-calculate-how-much-flocculant-to-use-to-treat-your-pool/
Search How To Use Pool Vacuum. Get The Best Result With ZapMeta About How To Use Pool Vacuum. Find More How To Use Pool Vacuum. ZapMeta Offers The Overview from 6...

SwarnApp said...

this info will be helpful for me. Thanks for sharing.
Girvi Software
Girvi Software

SwarnApp said...

thanks for sharing information awesome blog post
Jewellery ERP Software Dubai
Jewellery ERP Software Dubai