Tuesday 24 September 2013

Oppo launches N1 smartphone with rotating camera !!

NEW DELHI: Chinese smartphone brand Oppo has unveiled its new top-end smartphone N1 with a camera that acts as the front as well as the rear unit. The handset has a 5.9-inch screen, Android 4.2 and a six-piece lens design (which it claims is a first for any Android smartphone). The phone also comes with an accessory named O-Click, a remote for camera to take pictures when the handset is placed 50 metre away.



The company has announced that it will launch N1 in China and October; global release dates have not been revealed yet.


Oppo N1 has a full HD screen with 377ppi pixel density and the software has been topped with the manufacturer's own Color OS. It is powered by a 1.7GHz quad-core Snapdragon 600 processor and will come in 16 and 32GB storage variants, but no microSD support. It has 2GB RAM, 3,610mAh battery and connectivity options like 2G, 3G, 4G, Wi-Fi, Bluetooth 4.0, microUSB and NFC.

The camera of Oppo N1 has 13MP resolution, backed by dual-LED flash, and can rotate 206-degrees in order to work as the front unit. The manufacturer has said that this unit is highly durable and will work without glitches for 1,00,000 swivels. The camera unit has a CMOS sensor, F/2.0 aperture and a Fujitsu IPS image processing chip.

Oppo also announced that its new N1 smartphone can be purchased with stock Android 4.2, powered by CyanogenMod. Buyers will be able to select the software options (Color OS or stock Android) while ordering it via the official company website.

Friday 20 September 2013

YouTube to introduce feature for offline video viewing !

YouTube has now come up with a new feature that can allow users to watch videos for a temporary period in offline mode.

The online video giant said that the upcoming feature will allow users to add videos to their mobile device to watch for a short period when an internet connection is unavailable.

According to news.com.au, the feature if set to launch on YouTube’s mobile app in November.
The time for which the videos will be available for offline viewing is speculated to be around 48-hours, the report added.

Finally, BlackBerry Messenger is coming to Android and iPhone this weekend !!

The BBM app will be available for devices running Android 4.0 and up, or iOS 6 and iOS 7. It will allow Android and iOS users to communicate with BlackBerry owners.BlackBerry Messenger (BBM) is a proprietary Internet-based instant messenger and videotelephony application included on BlackBerry devices that allows messaging (and videocalls for BlackBerry 10 smartphones) between BlackBerry users. BBM currently has more than 60 million monthly active customers on BlackBerry alone, and the overwhelming majority use BBM an average of 90 minutes per day.
BBM for Android and iPhone features:
BBM Chat – Enjoy real, immediate conversations with friends on Android, iPhone and BlackBerry smartphones. Not only does BBM let you know that your message has been delivered and read, it also shows you that your friend is responding to the message. 
More than chat – With BBM you can share files on your phone such as photos and voice notes, all in an instant. 
Keep your group in the loop – Multi-person chats are a great way to invite contacts to chat together. BBM Groups lets you invite up to 30 friends to chat together, and go a step further than multi-chat by sharing photos and schedules. And, with Broadcast Message, you can send a message out to all your BBM contacts at once. 
Post Updates and stay in the know – BBM lets you post a personal message, profile picture and your current status, and lets your contacts know instantly in Updates. 
Your unique PIN – Every BBM user has a unique PIN that maintains your privacy, so you don’t have to give out your phone number or email address to a new or casual contact.
Availability: BBM will be available as a free download for Android smartphones running Ice Cream Sandwich and Jelly Bean (Android 4.x) beginning at 7AM EDT on September 21. BBM for iPhones running iOS 6 and iOS 7 will become available for each market on the App Store schedule of 12:01 AM local time on September 22.

Wednesday 18 September 2013

Facts about Bill Gates !!

1. Bill Gates earns $250 every SECOND, that's about $20 million a DAY and $7.8 billion a YEAR!

2. If he drops a thousand dollars, he won't even bother to pick it up
because in the 4 seconds it takes to pick it up, he would have already earned it back.

3. U.S's national debt is about $5.62 trillion. If Bill Gates wants to
pay the debt by himself; he will finish it in less then 10 years.

4. He can donate $15 to everyone on earth and still be left with $5
million for his pocket money.

5. Michael Jordan is the highest paid athlete in the U.S. If he
doesn't drink and eat, and keep his annual income at $30 million,
he'll have to wait for 277 years to become as rich as Bill Gates is
today.

6. If Bill Gates were a country, he will be the 37th richest country on earth.

7. If you change all of Bill Gate's money to $1 bills, you can make a
road from earth to moon 14 times back and forth. But you will have to make that road non-stop for 1400 years, and use a total of 713 BOEING 747 planes to transport all the money.

8. Bill Gates will be 42 this year. If we assume that he still can
live for another 35 years, he has to spend $6.78 million per day to
finish his money before his death.

Sunday 15 September 2013

Samsung to launch two sub-Rs 15,000 smartphones this month !!

 =>Samsung will launch two smartphones in India this month for less than Rs 15,000, intensifying competition in the mid-segment mobile market.

The Korean company, which has a 49% share in India's smart phone segment, will offer options in local languages to attract non-English speaking customers.


=>"We will be launching two new smartphones priced for the mid-segment market. Every phone from Samsung will have nine vernacular language options," Samsung country head (mobile business) Vineet Taneja said, without mentioning the prices.


=>However, a company official said the phones may be priced in the Rs 5,000-15,000 range. Most mobile phones in India are sold in this price range, including Nokia Lumia 520 and 620, Blackberry Curve series, Xolo smartphones and Micromax Canvas 2. The Samsung phones will offer access to content and applications in Hindi, Punjabi, Tamil, Bengali, Telugu, Kannada, Malayalam, Marathi and Gujarati.

Saturday 14 September 2013

Memory Leak !!

Memory leaks occur when the programmer forgets to free up memory after the program no longer needs it. Other times, a programmer may try to access a chunk of memory that has already been freed, leading to dangling pointers that can cause serious bugs or even crashes.

Garbage collection .. !!

1.Garbage collection is the systematic recovery of pooled computer storage that is being used by a program when that program no longer needs the storage. This frees the storage for use by other programs (or processes within a program). It also ensures that a program using increasing amounts of pooled storage does not reach its quota (in which case it may no longer be able to function).



2.
Garbage collection is an automatic memory management feature in many modern programming languages, such as Java and languages in the .NET framework. Languages that use garbage collection are often interpreted or run within a virtual machine like theJVM. In each case, the environment that runs the code is also responsible for garbage collection.



3.
In older programming languages, such as C and C++, allocating and freeing memory is done manually by the programmer. Memory for any data that can't be stored within a primitive data type, including objects, buffers and strings, is usually reserved on the heap. When the program no longer needs the data, the programmer frees that chunk of data with an API call. Because this process is manually controlled, human error can introduce bugs in the code.

BUBBLE SORT - ALGORITHM !!

Let A be a list of n numbers .Sorting A refers to the operation of rearranging the elements of A so they are in increasing order .i.e .. so that ...

A[1] < A[2] < A[3] <  .....  < A[N]

For example , suppose A is is originally in the list ..

               8,4,19,2,7,13,5,16
After sorting ..
               2,4,5,7,8,13,16,19

BUBBLE(DATA,N)
Here DATA is an array with N elements .This algorithm sorts the elements in DATA.

1.Repeat Steps 2 and 3 for i=1 to N-1.

2.        set PTR = 1 [initialize pass pointer PTR ]

3.        Repeat while PTR <= i - j [Executes pass ]

           (a) If DATA[PTR]>DATA[PTR + 1] ,then

                     Interchange DATA[PTR] and DATA[PTR + 1]

                [End of if structure ]

           (b) Set PTR = PTR + 1

       
            [End of inner loop ]
        
        [End of step 1 outer loop]

4. EXIT



Thursday 12 September 2013

TRAVERSING BINARY TREES !!

PREORDER
1.Process the root R.
2.Traverse the left subtree of R in preorder.
3.Traverse the right subtree of R in preorder.

INORDER

1.Traverse the left subtree of R in inorder.
2.Process the root R.
3.Traverse the right subtree of R in inorder.

POSTORDER
1.Traverse the left subtree of R in postorder.
2.Traverse the right subtree of R in postorder.
3.Process the root R.

Tuesday 10 September 2013

HOW CLOUD COMPUTING WORKS .. !!!

Cloud Computing   has been changing how most people use the web and how they store their files. It’s the structure that runs sites like Facebook, Amazon
and Twitter and the core that allows us to take advantage of services like Google Docs and Gmail. But how does it work?



Let’s understand what the term “cloud“ refers to.  The concept of the cloud has been around for a long time in many different incarnations in the business world. It mostly means a grid of computers serving as a service-oriented architecture to deliver software and data.What differentiates the cloud from the way those are set up is that the cloud utilizes the resources from the computers as a collective virtual computer.The cloud takes advantage of that a lot of the software that people use nowadays are completely web-based. For example, if you are hosting your website on a local server or from your PC, you must usually select a particular operating system (Windows/Linux/Mac), to determine what software you can run on that particular server. If your site is being hosted in the cloud, there is no need to do that. You can run Windows and Linux programs side by side.

How is that done?
To understand how does cloud computing work, imagine that the cloud consists of layers — mostly the back-end layers and the front-end or user-end layers. The front-end layers are the ones you see and interact with. When you access your email on Gmail for example, you are using software running on the front-end of a cloud. The same is true when you access your Facebook account. The back-end consists of the hardware and the software architecture that fuels the interface you see on the front end.

Because the computers are set up to work together, the applications can take advantage of all that computing power as if they were running on one particular machine. Cloud computing also allows for a lot of flexibility. 

Will it change the way we use computers?
Sure, most of us still use some version of Microsoft Office or Quickbooks that was installed on our computers, but even those kinds of software are now offering an online version that can be used instead. The possibility of being able to access your data and software wherever you need it makes this transition very appealing to most people.

Facebook introduces shared photo albums !!!

A picture's worth a thousand words, and now Facebook is letting others add to your conversation.
Fear not, for Facebook is finally going to allow you to collaborate with your friends to create the
definitive photo album of every social encounter.


Like the system for creating events and inviting other friends to be "administrators," the new shared albums feature will give users a new "add contributors" button on the upper left-hand corner of a photo album after they first create it.
The album's creator will be able to add up to 50 additional contributors, each with the ability to add an additional 200 photos to the album.
Facebook said that the feature is only available on the desktop version of the social network for the time being, and will be rolled out to English users to start with a wider launch follow the initial trial period.

Facebook engineers developed the new feature in order to resolve a common frustration of multiple users creating nearly identical photo albums of the same event — a problem that smaller developers have tried to resolve with varying levels of success (and failure) with apps like FlockAlbumatic, and the notoriously unpopular Color.
 Album creators will have the power to delete or modify photos in the album, but contributors will have editing power over photos that they upload. The feature is not available for Page albums, says a Facebook spokesperson.

Monday 9 September 2013

TOP BEST BUY TABLETS FOR TRAVELLING !!

Travel means packing, and packing means packing light.So you don't want the extra weight of books, CDs, and DVDs to haul around, which makes a tablet the ideal vacation companion.There are manier of tablets available on the market now, in various sizes and with various capabilities and low prices. Some are simple e-book readers, others with a snap-on keyboard can almost replace a laptop computer.

Here are three of the best that are as capable if not more capable than Apple's icons:-

1. Sony Xperia Tablet Z, $500

>Sony's Xperia is the ultimate tablet-versus-wild weatherproof entertainer. With a 10.1-inch screen that has a true HD TV aspect ratio (for high-def movies) and the slimmest profile around, the Sony Xperia may be the best designed tablet on the market. >It's also waterproof ,It means you can leave it on the coffee table or kitchen counter without worrying that some fumble-fingers will destroy it with a spilled drink. >It  comes with front and back cameras, GPS, 16 GB of memory, and near field communications .>If you're accustomed to flying first class, this tablet's for you.

2. Google Nexus 7, $230


>In the 7-inch category, the updated Nexus 7 is the brightest player, literally. Its standout, 1,920-by-1,200-pixel IPS LCD panel is strikingly sharper and crisper than comparable tablets.>It has 16 GB of memory, front and rear facing cameras, GPS, the latest Bluetooth Smart support, and wireless near field communications for the next generation of features .>The basic model with Wi-Fi is a bargain at $230, but if you want more memory, the 32GB model is $270 and for a 4G cellular connection, it's $350. 

3. Kindle Fire HD, $200

>The Kindle Fire HD is an easy going vacationer, great for delivering videos, e-books, and sundry entertainment to keep your travels from becoming travails. This 7-inch screen model isn't as slick or as svelte as the Google Nexus 7, but it's ideal for those Amazon Prime members and shoppers who just want to enjoy their purchases without hassle. >It has great sound, 16 GB of memory, and a camera for video calls, but it lacks GPS for navigation and is Wi-Fi only .>Ads appear on the Kindle's lock screen—you  can pay an additional $15 to remove them—but  they never bothering.>Its a good buy in a simple-to-use ecosystem—for a lot (a lot!) less money.