Skip to main content

Motorola Tries to Reheat Xoom With 4G Boost



Motorola and Verizon Wireless on Wednesday got around to delivering what's been promised to owners of the Xoom tablet for several months: 4G LTE.

When the Motorola Xoom first went on sale early in 2011, buyers were told that they'd eventually be able to send their 3G-wireless-equipped tablets to a workshop where they'd be upgraded with faster 4G wireless hardware free of charge. The upgrade was promised to come in the first half of the year.

Verizon also announced the upcoming availability of a Xoom that comes with 4G technology pre-installed.

The Xoom has been on the market since February, when it debuted as the first tablet to feature Android Honeycomb, a version of the OS designed specifically for tablets. It was initially viewed as a worthy iPad competitor, though its sales took a hit when Apple (Nasdaq: AAPL) released the iPad 2 a few weeks later.

Through the process, Verizon maintained the 4G version of the Xoom and the upgrade offer would be available by the end of the second quarter. Both are late, leading to plenty of unsatisfied customers, but the company is confident the upgraded version will give it a boost.

"The Xoom has been competing in this market quite successfully since February, so we have every reason to believe the update to 4G LTE will increase its popularity even more," Brenda Boyd Raney, executive director of corporate communications at Verizon Wireless, told TechNewsWorld.

Existing Xoom users can go to Verizon's site for information on how to send in their tablets for the upgrade. They'll receive the device after about six business days. Consumers looking to buy the product in a Verizon store will have to wait until Oct. 15.

4G LTE: What Is It Good For?

The Motorola Xoom will join the Samsung 4G tablet in offering connection speeds on faster cellular data networks. While there is definitely a demographic demanding speedy downloads and access to quick entertainment while not connected to the Internet via WiFi, it's unknown whether that market segment is large enough to support a premium-priced product.

"I think there is a market for users who want to stream video anywhere via 4G, but I am not sure how large it will be forcing vendors who will be competing in a relatively small market segment," Peter Crocker, principal analyst with GigaOM, told TechNewsWorld.

Since consumer 4G technology is still in its early stages, high costs are one of the downsides to products connected to faster networks.

"The high data costs will keep these products out of the reach of many, and users who are so addicted to streaming video that they have to have it wherever they go presumably don't have a lot of resources to spend on the Xoom and a 4G data plan," said Crocker.

The increased energy consumption is also a factor when deciding between a 3G or 4G device, especially for users who anticipate using the tablet all day or for extended periods of time without charging, such as while traveling.

"Many users know that Apple in the past has said they didn't think at the time that 4G LTE was suitable for Apple products because of the battery consumption," Hendi Susanto, research analyst at Gabelli, told TechNewsWorld.

Though these issues will likely be resolved once 4G LTE technology becomes a more widely accepted connectivity technology, it's unlikely that the Xoom will receive a significant boost in sales now that 4G is part of the package.

"It could be one of the things that advanced tech buyers look at, but for the average customer it may not be a differentiating factor when it comes to the product," said Susanto.

Comments

Popular posts from this blog

Number Format In Javascript

Number.toFixed() :                                 Formats any number for "x" number of trailing decimals. The number is rounded up, and "0"s are used after the decimal point if needed to create the desired decimal length.   var profits=2489.8237 profits.toFixed(3) //returns 2489.824 (round up) profits.toFixed(2) //returns 2489.82 profits.toFixed(7) //returns 2489.8237000 (padding)   Number.toPrecision() :                                   Formats any number so it is of "x" length. Also called significant digits. A decimal point and "0"s are used if needed to create the desired length.   var anumber=123.45 anumber.toPrecision(6) //returns 123.450 (padding) anumber.toPrecision(4) //returns 123.5 (round up) anumber.toPrecision(2) //returns 1.2e+2 (you figure it out!) Round to a certain number of places For rounding decimals y

Use of indexOf and charAt in javascript

indexOf(): The indexOf() method returns the position of the first occurrence of a specified value in a string. This method returns -1 if the value to search for never occurs. example :  <script type="text/javascript"> var str="Hello world!"; document.write(str.indexOf("d") + "<br />"); document.write(str.indexOf("WORLD") + "<br />"); document.write(str.indexOf("world")); </script> Output : 10 -1 6 charAt() The charAt() method returns the character at the specified index in a string. The index of the first character is 0, and the index of the last character in a string called "txt", is txt.length-1 <script type="text/javascript"> var str = "Hello world!"; document.write("First character: " + str.charAt(0) + "<br />"); document.write("Last character: " + str.charAt(str.l

Html tags

HTML Basic Document <html> <head> <title>Title of document goes here</title> </head> <body> Visible text goes here... </body> </html> Heading Elements <h1>Largest Heading</h1> <h2> . . . </h2> <h3> . . . </h3> <h4> . . . </h4> <h5> . . . </h5> <h6>Smallest Heading</h6> Text Elements <p>This is a paragraph</p> <br /> (line break) <hr /> (horizontal rule) <pre>This text is preformatted</pre> Logical Styles <em>This text is emphasized</em> <strong>This text is strong</strong> <code>This is some computer code</code> Physical Styles <b>This text is bold</b> <i>This text is italic</i> Links Ordinary link: <a href="http://www.example.com/">Link-text goes here</a> Image-link: <a href="http://ww