<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6192194885553977738</id><updated>2012-02-02T23:16:45.281-08:00</updated><category term='Puzzles'/><category term='OOP'/><category term='Arrays'/><category term='Analytical'/><category term='General'/><category term='Algorithms'/><category term='Linux'/><category term='Strings'/><title type='text'>Amazon.com Interview Questions and Puzzles</title><subtitle type='html'>Amazon interview questions blog. Part of www.technical-interview.com</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-4105599890542468019</id><published>2011-10-15T04:58:00.001-07:00</published><updated>2011-10-15T04:58:37.463-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Algorithms'/><title type='text'>Classify the Hashing Functions based on the various methods by which the key value is found</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-4105599890542468019?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/4105599890542468019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2011/10/classify-hashing-functions-based-on.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/4105599890542468019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/4105599890542468019'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2011/10/classify-hashing-functions-based-on.html' title='Classify the Hashing Functions based on the various methods by which the key value is found'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-8862454906644178407</id><published>2011-09-30T10:15:00.001-07:00</published><updated>2011-09-30T10:15:16.607-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Algorithms'/><title type='text'>Common multiple</title><content type='html'>Q: Given two numbers m and n, write a method to return the first number r that is&lt;br /&gt;divisible by both (e.g., the least common multiple).&lt;br /&gt;&lt;br /&gt;A:&lt;br /&gt;The Approach:&lt;br /&gt;What does it mean for r to be divisible by m and n? It means that all the primes in m must go into r, and all primes in n must be in r. What if m and n have primes in common?&lt;br /&gt;&lt;br /&gt;For example, if m is divisible by 3^5 and n is divisible by 3^7, what does this mean about r? It means r must be divisible by 3^7.&lt;br /&gt;&lt;br /&gt;The Rule: For each prime p such that p^a \ m (e.g., m is divisible by p^a) and p^b \ n, r must be divisible by p^max(a, b)&lt;br /&gt;&lt;br /&gt;The Algorithm:&lt;br /&gt;Define q to be 1.&lt;br /&gt;for each prime number p less than m and n:&lt;br /&gt;find the largest a and b such that p^a \ m and p^b \ n&lt;br /&gt;let q = q * p^max(a, b)&lt;br /&gt;return q&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-8862454906644178407?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/8862454906644178407/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2011/09/common-multiple.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/8862454906644178407'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/8862454906644178407'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2011/09/common-multiple.html' title='Common multiple'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-7856534213162002823</id><published>2010-04-28T11:56:00.001-07:00</published><updated>2010-04-28T11:56:33.857-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><category scheme='http://www.blogger.com/atom/ns#' term='Puzzles'/><title type='text'>Car is traveling</title><content type='html'>A car is traveling at a uniform speed.The driver sees a milestone showing a 2-digit number. After traveling for an hour the driver sees another milestone with the same digits in reverse order.After another hour the driver sees another milestone containing the same two digits. What is the average speed of the driver?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Ans&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;45 kmph&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-7856534213162002823?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/7856534213162002823/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/car-is-traveling.html#comment-form' title='18 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7856534213162002823'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7856534213162002823'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/car-is-traveling.html' title='Car is traveling'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>18</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-7015560557038253031</id><published>2010-04-28T11:54:00.001-07:00</published><updated>2010-04-28T11:55:19.461-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><category scheme='http://www.blogger.com/atom/ns#' term='Puzzles'/><title type='text'>Father's age</title><content type='html'>Father's age is three years more than three times the son's age.After three years, father's age will be ten years more than twice the son's age. What is the father's present age?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;br /&gt;33 years.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-7015560557038253031?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/7015560557038253031/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/fathers-age.html#comment-form' title='16 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7015560557038253031'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7015560557038253031'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/fathers-age.html' title='Father&apos;s age'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>16</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-7206802037852373089</id><published>2010-04-28T11:53:00.001-07:00</published><updated>2010-04-28T11:53:23.747-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>General Questions</title><content type='html'>1- Why do you like to work with us?&lt;br /&gt;&lt;br /&gt;2- What work are you expecting?&lt;br /&gt;&lt;br /&gt;3- Tell me about any of your experience&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-7206802037852373089?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/7206802037852373089/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/general-questions.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7206802037852373089'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7206802037852373089'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/general-questions.html' title='General Questions'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-112110352529806733</id><published>2010-04-28T11:51:00.001-07:00</published><updated>2010-04-28T11:51:47.037-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Top command</title><content type='html'>What is the functionality of a top command?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Ans&lt;/b&gt;&lt;br /&gt;Top command displays all the Linux tasks running at that particular time. It provides their running time and the resources used.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-112110352529806733?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/112110352529806733/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/top-command.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/112110352529806733'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/112110352529806733'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/top-command.html' title='Top command'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-3743972771349645604</id><published>2010-04-28T11:50:00.000-07:00</published><updated>2010-04-28T11:52:05.144-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><category scheme='http://www.blogger.com/atom/ns#' term='Algorithms'/><category scheme='http://www.blogger.com/atom/ns#' term='Arrays'/><title type='text'>Array of size</title><content type='html'>Given an array of size n+1 which contains all the numbers from 1 to n. Find the number which is repeated in O(n) time. How do you proceed with the same with floating numbers from 0 to 1 instead of 1 to n?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Ans&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;The number appearing 2 times is (sum of all the numbers in the array) - (sum of the numbers from 1 to n). For floating numbers multiply it with 100 and proceed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-3743972771349645604?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/3743972771349645604/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/array-of-size.html#comment-form' title='17 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/3743972771349645604'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/3743972771349645604'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/array-of-size.html' title='Array of size'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>17</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-6740778263420329783</id><published>2010-04-28T11:49:00.000-07:00</published><updated>2010-04-28T11:49:14.460-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><title type='text'>Two trains enter at the opposite</title><content type='html'>Two trains enter at the opposite sides of a tunnel of length L with speeds 'V'. A particle enters the tunnel at the same time with a speed 'v' and it vibrates in the tunnel[i.e. if it reaches the end of the tunnel then it comes back]. What is the position of the particle by the time the 2 trains meet?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Ans&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;If v&lt;=2V then the position is (v*L)/(2*V) from the starting point else it is 2*L -(v*L)/(2*V) from the starting point.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-6740778263420329783?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/6740778263420329783/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/two-trains-enter-at-opposite.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6740778263420329783'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6740778263420329783'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/two-trains-enter-at-opposite.html' title='Two trains enter at the opposite'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-7368224276922908669</id><published>2010-04-24T11:56:00.001-07:00</published><updated>2010-04-24T17:12:13.278-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Amazon.com</title><content type='html'>Type: Public&lt;br /&gt;On the web: http://www.amazon.com&lt;br /&gt;Employees: 24,300&lt;br /&gt;Employee growth: 17.4% &lt;br /&gt;&lt;br /&gt;What started as Earth's biggest bookstore has rapidly become Earth's biggest anything store. Expansion has propelled Amazon.com in innumerable directions. Its main Web site offers millions of books, music, and movies (which still account for most of its sales), not to mention auto parts, toys, electronics, home furnishings, apparel, health and beauty aids, prescription drugs, and groceries. Also, shoppers can download books, games, MP3s, and films to their computers or handheld devices, including Amazon's own portable reader, the Kindle. Amazon also offers services and products, such as self-publishing, online advertising, a Web store platform, and a co-branded credit card. Amazon acquired Zappos.com in 2009. &lt;br /&gt;&lt;br /&gt;Key numbers for fiscal year ending December, 2009: &lt;br /&gt;Sales: $24,509.0M&lt;br /&gt;One year growth: 27.9%&lt;br /&gt;Net income: $902.0M&lt;br /&gt;Income growth: 39.8% &lt;br /&gt;&lt;br /&gt;Officers:&lt;br /&gt;Chairman, President, and CEO: Jeffrey P. (Jeff) Bezos&lt;br /&gt;SVP and CFO: Thomas J. (Tom) Szkutak&lt;br /&gt;Senior Manager Business Development: Scott Merlino&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-7368224276922908669?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/7368224276922908669/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/amazon.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7368224276922908669'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7368224276922908669'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/amazon.html' title='Amazon.com'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-6292365415168660633</id><published>2010-04-24T11:48:00.002-07:00</published><updated>2010-04-24T11:48:49.747-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><category scheme='http://www.blogger.com/atom/ns#' term='Algorithms'/><category scheme='http://www.blogger.com/atom/ns#' term='Arrays'/><title type='text'>Missing number</title><content type='html'>Given an array of size n. It contains numbers in the range 1 to n. Each number is present at least once except for 1 number. Find the missing number.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-6292365415168660633?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/6292365415168660633/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/missing-number.html#comment-form' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6292365415168660633'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6292365415168660633'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/missing-number.html' title='Missing number'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-3863704628209194533</id><published>2010-04-24T11:48:00.000-07:00</published><updated>2010-04-24T11:48:03.701-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Algorithms'/><category scheme='http://www.blogger.com/atom/ns#' term='Arrays'/><title type='text'>Denominations of coins</title><content type='html'>You are given some denominations of coins in an array (int denom[])and infinite supply of all of them. Given an amount (int amount), find the minimum number of coins required to get the exact amount. What is the method called?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-3863704628209194533?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/3863704628209194533/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/denominations-of-coins.html#comment-form' title='18 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/3863704628209194533'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/3863704628209194533'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/denominations-of-coins.html' title='Denominations of coins'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>18</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-517201805141032155</id><published>2010-04-24T11:47:00.000-07:00</published><updated>2010-04-24T11:47:19.075-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Algorithms'/><category scheme='http://www.blogger.com/atom/ns#' term='Arrays'/><title type='text'>Maximum sum</title><content type='html'>Given an array all of whose elements are positive numbers, find the maximum sum of a subsequent elements with the constraint that no 2 numbers in the sequence should be adjacent in the array. So, 3 2 7 10 should return 13 (sum of 3 and 10) or 3 2 5 10 7 should return 15 (sum of 3, 5 and 7)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-517201805141032155?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/517201805141032155/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/maximum-sum.html#comment-form' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/517201805141032155'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/517201805141032155'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/maximum-sum.html' title='Maximum sum'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-8826513809486163139</id><published>2010-04-24T11:43:00.002-07:00</published><updated>2010-04-24T11:43:49.214-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OOP'/><title type='text'>Polymorphism</title><content type='html'>Explain polymorphism. Provide an example.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-8826513809486163139?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/8826513809486163139/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/polymorphism.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/8826513809486163139'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/8826513809486163139'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/polymorphism.html' title='Polymorphism'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-7286394925686427163</id><published>2010-04-24T11:43:00.000-07:00</published><updated>2010-04-24T11:43:22.311-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Algorithms'/><title type='text'>Convert a decimal number</title><content type='html'>How do you convert a decimal number to its hexa-decimal equivalent. Give a C code to do so.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-7286394925686427163?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/7286394925686427163/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/convert-decimal-number.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7286394925686427163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/7286394925686427163'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/convert-decimal-number.html' title='Convert a decimal number'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-2361593018221760107</id><published>2010-04-24T11:42:00.001-07:00</published><updated>2010-04-24T11:42:33.878-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><category scheme='http://www.blogger.com/atom/ns#' term='Algorithms'/><category scheme='http://www.blogger.com/atom/ns#' term='Arrays'/><title type='text'>Array of size n</title><content type='html'>Given an array of size n, containing every element from 1 to n+1, except one. Find the missing element.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-2361593018221760107?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/2361593018221760107/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/array-of-size-n.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/2361593018221760107'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/2361593018221760107'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/array-of-size-n.html' title='Array of size n'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-6724512859704058893</id><published>2010-04-24T11:41:00.002-07:00</published><updated>2010-04-24T11:41:51.300-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Arrays'/><title type='text'>Second largest elemen</title><content type='html'>Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-6724512859704058893?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/6724512859704058893/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/second-largest-elemen.html#comment-form' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6724512859704058893'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6724512859704058893'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/second-largest-elemen.html' title='Second largest elemen'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-4823251659194482515</id><published>2010-04-24T11:41:00.000-07:00</published><updated>2010-04-24T11:41:18.955-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><title type='text'>N red balls</title><content type='html'>Given n red balls and m blue balls and some containers, how would you distribute those balls among the containers such that the probability of picking a red ball is maximized, assuming that the user randomly chooses a container and then randomly picks a ball from that.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-4823251659194482515?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/4823251659194482515/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/n-red-balls.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/4823251659194482515'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/4823251659194482515'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/n-red-balls.html' title='N red balls'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-4795864151285085100</id><published>2010-04-24T11:40:00.001-07:00</published><updated>2010-04-24T11:40:39.823-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Strings'/><title type='text'>Write a function which</title><content type='html'>Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-4795864151285085100?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/4795864151285085100/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/write-function-which.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/4795864151285085100'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/4795864151285085100'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/write-function-which.html' title='Write a function which'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-1891304330854044565</id><published>2010-04-24T11:39:00.002-07:00</published><updated>2010-04-24T11:39:51.769-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Algorithms'/><title type='text'>Merge Sort</title><content type='html'>What is the time and space complexities of merge sort and when is it preferred over quick sort?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-1891304330854044565?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/1891304330854044565/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/merge-sort.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/1891304330854044565'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/1891304330854044565'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/merge-sort.html' title='Merge Sort'/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-1810515834579507430</id><published>2010-04-24T11:39:00.000-07:00</published><updated>2010-04-24T11:39:07.883-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Arrays'/><title type='text'></title><content type='html'>What is a C array and illustrate how it is different from a list.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-1810515834579507430?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/1810515834579507430/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/what-is-c-array-and-illustrate-how-it.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/1810515834579507430'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/1810515834579507430'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/what-is-c-array-and-illustrate-how-it.html' title=''/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-8812260810577150638</id><published>2010-04-24T11:38:00.001-07:00</published><updated>2010-04-24T11:38:21.921-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><title type='text'></title><content type='html'>Given a cube of size n*n*n (i.e made up of n^3 smaller cubes), find the number of smaller cubes on the surface. Extend this to k-dimension.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-8812260810577150638?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/8812260810577150638/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/given-cube-of-size-nnn-i.html#comment-form' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/8812260810577150638'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/8812260810577150638'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/given-cube-of-size-nnn-i.html' title=''/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-2938679107369661214</id><published>2010-04-24T11:37:00.002-07:00</published><updated>2010-04-24T11:37:50.720-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Strings'/><title type='text'></title><content type='html'>You are given a dictionary of all valid words. You have the following 3 operations permitted on a word: delete a character, insert a character, replace a character. Now given two words - word1 and word2 - find the minimum number of steps required to convert word1 to word2. (one operation counts as 1 step.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-2938679107369661214?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/2938679107369661214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/you-are-given-dictionary-of-all-valid.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/2938679107369661214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/2938679107369661214'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/you-are-given-dictionary-of-all-valid.html' title=''/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-6210317008102795346</id><published>2010-04-24T11:37:00.000-07:00</published><updated>2010-04-24T11:37:14.667-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Strings'/><title type='text'></title><content type='html'>Given a string, find the first unrepeated character in it? Give some test cases.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-6210317008102795346?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/6210317008102795346/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/given-string-find-first-unrepeated.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6210317008102795346'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6210317008102795346'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/given-string-find-first-unrepeated.html' title=''/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-2247375024784382507</id><published>2010-04-24T11:36:00.001-07:00</published><updated>2010-04-24T11:36:35.898-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><title type='text'></title><content type='html'>Given an array of size n. It contains numbers in the range 1 to n. Find the numbers which aren’t present.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-2247375024784382507?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/2247375024784382507/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/given-array-of-size-n_24.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/2247375024784382507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/2247375024784382507'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/given-array-of-size-n_24.html' title=''/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-9196848644527678722</id><published>2010-04-24T11:35:00.000-07:00</published><updated>2010-04-24T11:35:24.480-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Analytical'/><title type='text'></title><content type='html'>Given an array of size n. It contains numbers in the range 1 to n. Each number is present at least once except for 2 numbers. Find the missing numbers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-9196848644527678722?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/9196848644527678722/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/given-array-of-size-n.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/9196848644527678722'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/9196848644527678722'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/given-array-of-size-n.html' title=''/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-317785818660472108</id><published>2010-04-24T11:33:00.001-07:00</published><updated>2010-04-24T11:33:59.967-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OOP'/><title type='text'></title><content type='html'>Define Data Abstraction. What is its importance?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-317785818660472108?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/317785818660472108/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/define-data-abstraction.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/317785818660472108'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/317785818660472108'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/define-data-abstraction.html' title=''/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6192194885553977738.post-6311324769229638387</id><published>2010-04-24T11:32:00.001-07:00</published><updated>2010-04-24T11:32:52.128-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OOP'/><title type='text'></title><content type='html'>What are the 4 basics of OOP?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6192194885553977738-6311324769229638387?l=amazon-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://amazon-interview-questions.blogspot.com/feeds/6311324769229638387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/what-are-4-basics-of-oop.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6311324769229638387'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6192194885553977738/posts/default/6311324769229638387'/><link rel='alternate' type='text/html' href='http://amazon-interview-questions.blogspot.com/2010/04/what-are-4-basics-of-oop.html' title=''/><author><name>Administrator</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry></feed>
