Skip to main content

BSNL tablet gets over one lakh pre order requests

Public sector telecom operator, BSNL, which recently launched extremely low cost tablets along with two mid range tablets, has got a tremendous response from Indian consumers. The three tablets, bundled with its connection, are in the price range of Rs 3,499 - Rs 12,500. They are manufactured by Noida based Pantel Technologies.




Virendra Singh, managing director of Pantel Technologies, said to The Mobile Indian, "We have received more than one lakh pre booking orders over phone and online for the three tablets which we have launched in association with BSNL."

He further added, "Apart from the consumers' interest, we have also got an order for two lakh tablets from Sahara India."

The entry level BSNL tablet, Penta IS701R, is a WiFi only device with Android 2.3 operating system, 1 GHz processor and 256 MB RAM. The tablet also has an HDMI port through which it can be connected to a TV. Its 7 inch resistive touchscreen has 800 x 600 pixel resolution and 16:9 aspect ratio.

The tablet has a 3000 mAh battery and 2 GB internal memory which can be expanded through a micro SD card. The tablet also has a VGA front facing camera for video calling.

The mid-range 7 inch tablet with capacitive touchscreen is named Penta Tpad_ws704c. It has the same specifications as Penta IS701R, but offers added 3G connectivity through a SIM slot, inbuilt A-GPS, an accelerometer, and Bluetooth. It has a 2 megapixel rear camera and a bigger 512 MB RAM for faster performance.

The most expensive among the three is the Penta Tpad WS802C, which has an 8 inch capacitive screen and a SIM slot for 3G/2G connectivity. It too comes with a faster 1.2 GHz processor and 512 MB RAM. The internal memory is also bigger at 4 GB. Rest of the features like GPS, camera and Bluetooth are same as those in the 704C.

The delivery of tablets which have been pre booked will commence after March 5, and the tablets will be available in retail stores and BSNL outlets from March 1.

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.toPreci...

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...

Check javascript is enable or disable

Hello there In our genreal practice of developing a webpage we use JAVASCRIPT. But do you know what will happen when in clients' browser javascript is disable and in your webpage you used it ?? Nothing will happen as per your expectation. It is good programming practice to check JAVASCRIPT is disabled or not . For example  <noscript>   <meta http-equiv = "refresh" content = "1;url=error.html" > </noscript>   This will redirect to an error page if script is disabled. Just replace error.html with the url of your error page. Or you also can do this   <noscript> <blink>Please enable javascript</blink> </noscript>