सीधे मुख्य सामग्री पर जाएं

Amazon

Amazon

Amazon is a cloud computing giant and the largest American e-commerce company. It was founded in 1994 by Jeff Bezos.
Originally known for selling books through its website (and later digital versions via its Kindle e-reader), Amazon has built up a customer service, inventory, and shipping empire that allows the site to offer everything from clothes to lawn furniture to janitorial supplies. It also sells digital content like movies, music, and apps. Its Amazon Web Services arm is a multibillion-dollar provider of cloud-based services for millions of business customers around the world, including government agencies and universities. And it’s a major player in consumer electronics--not only by offering devices such as Fire tablets and TV boxes, but also via its Alexa AI assistant service, which made news at the CES 2017 gadget show by being built into everything from LG refrigerators to Ford cars.
Amazon is even a Hollywood player, taking home two awards at the 2017 Golden Globes. Yet the basics of Bezos's business philosophy--focusing on long-term customer loyalty over short-term profits and never-ending expansion into new businesses--have been surprisingly consistent over the years. And Amazon's obsession with efficiency explains why it's now delivering products in just two hours via its Prime Now service, and why it hopes to be among the first e-commerce companies to deploy its own fleet of drones with Amazon Prime Air, a future fleet of autonomous aerial vehicles that will deliver packages under five pounds.
In an interesting twist, Amazon has made significant investments in brick and mortar, opening its first bookstore in Seattle in late 2015 and since then expanding to 13 locations. In 2017, the company completed its acquisition of Whole Foods and in early 2018 opened an Amazon Go grocery store to the public at the company's headquarters in Seattle. 
Data
Valuation: $390 billion
Public Or Private: Public
Profitable: Yes
Staff: 341,400
Users: More than 244 million active customer accounts
Headquarters: Seattle, WA
Amazon On The Web

टिप्पणियाँ

इस ब्लॉग से लोकप्रिय पोस्ट

Dofollow Instant Approval Blog Commenting Sites list – 2019

Dofollow Instant Approval Blog Commenting Sites list – 2019 Technology ABCD Hello friend aap lo kaise hai mai ummid karta hu ki aap log bahut hi achche honge aaj ke is post me mai aap sabhi DoFollow BackLinks ke bare me batate wala hu ki aap log apne blog website ke liye or apne blog ke post ke liye kis trah se comment kar ke Dofollow backlinks banayenge agar aap log janna chahte hai to aap is post me bane rahe to chaliye suru karte hai. Backlinks का प्रकार? Nofollow बैकलिंक Dofollow BackLink NoFollow BackLink  – जब कोई website किसी दूसरी website को link करती है पर उस link के पास nofollow tag होता है, तो link juice pass नहीं करता। Page की ranking के लिए Nofollow links useful नहीं हैं क्योंकि वह कुछ भी contribute नहीं करते। आम तोर पर, एक webmaster nofollow tag तब use करता है, जब वह किसी unreliable site से link out करता है। Example: दुसरे blogs पर comments से links। दोस्तों जिस तरीके से मैंने आपको बताया की  Dofollow Backlinks  से link juice आपके ब्लॉग में flow होता है लेकि

Vijay Mahar Logo PNG

Hello friendsHow are You Hope you all are fine You are here for download The logo of Vijay Mahar Download Hold the image Click on Download button Go to Vijay Mahar   Instagram Vijay Mahar Facebook

C program to print hollow square or rectangle star pattern

C program to print hollow square or rectangle star pattern Example Input Enter number of rows: 5 Output ***** * * * * * * ***** /** * C program to print hollow square star pattern */ # include int main ( ) { int i , j , N ; /* Input number of rows from user */ printf ( "Enter number of rows: " ) ; scanf ( "%d" , & N ) ; /* Iterate over each row */ for ( i = 1 ; i <= N ; i ++ ) { /* Iterate over each column */ for ( j = 1 ; j <= N ; j ++ ) { if ( i == 1 || i == N || j == 1 || j == N ) { /* Print star for 1st, Nth row and column */ printf ( "*" ) ; } else { printf ( " " ) ; } } /* Move to the next line/row */ printf ( "\n" ) ; } return 0 ; }