Skip to main content

WhatsApp

WhatsApp is a freeware and cross-platform messaging and Voice over IP(VoIP) service owned by Facebook.The application allows the sending of text messages and voice calls, as well as video calls, images and other media, documents, and user location.


The application runs from a mobile device though it is also accessible from desktop computers; the service requires consumer users to provide a standard cellular mobile number. Originally users could only communicate with other users individually or in groups of individual users.


WhatsApp was founded in 2009 by Brian Acton and Jan Koum, both former employees of Yahoo!. After Koum and Acton left Yahoo! in September 2007, the duo traveled to South America to take a break from work.At one point, they applied for jobs at Facebook but were rejected.For the rest of the following years Koum relied on his $400,000 savings from Yahoo!.


In February 2015, WhatsApp introduced a voice calling feature; this helped WhatsApp to attract a completely different segment of the user population.On November 14, 2016, Whatsapp added video calling feature for users across Android, iPhone, and Windows Phone devices.On November 2017,Whatsapp released a new feature that would let its users delete messages sent by mistake within a time frame of 7 minutes.



  • In May 2014, WhatsApp crossed 50 million monthly active users in India, which is also its largest country by the number of monthly active users.
  • In October 2014, WhatsApp crossed 70 million monthly active users in India, which is 10% of its total user base (700 MM).
  • In February 2017, WhatsApp crossed 200 million monthly active users in India.

WhatsApp competes with a number of Asian-based messaging services (that as of 2014, were services like WeChat (468 million active users), Viber (209 million active users) and LINE.


WhatsApp uses a customized version of the open standard Extensible Messaging and Presence Protocol (XMPP). Upon installation, it creates a user account using one's phone number as the username.


WhatsApp software automatically compares all the phone numbers from the device's address book with its central database of WhatsApp users to automatically add contacts to the user's WhatsApp contact list. 

In February 2015, WhatsApp introduced a voice calling feature; this helped WhatsApp to attract a completely different segment of the user population. On November 14, 2016, Whatsapp added video calling feature for users across Android, iPhone, and Windows Phone devices.


In May 2017, it was reported that WhatsApp users spend over 340 million minutes on video calls each day on the app. This is the equivalent of roughly 646 years of video calls per day.As of February 2017, WhatsApp has over 1.2 billion users globally.



Comments

Popular posts from this blog

Process & Its state And process control block :-

                ⇰  PROCESS :- A process can be thought of as a program in execution. Means when any program is executed it becomes process. A processwill need certain resources such as CPU time , memory, files and I/O devices to complete its task. These resources are allocated to the process either when it is created or at the time of execution.             A process is the unit of work in most systems. A system consistes of a collection of processes. All these processes may execute concurrently. Traditionally a process contained only a single thread. Most modern operating ststems now supports processes that have multiple threads.         The operating system is responsible for several important works of process management as - the creation and deletion of process, the schrduling of process, communication and deadlock handling of process. Process is broudly divided into two ...

Process Scheduling And Types of Process Schedular :-

        ⇰ PROCESS SCHEDULING Process Scheduling  is a task  of Operating System that schedules processes of different states like new, ready, waiting, terminated  and running.This scheduling helps in allocation of CPU time for each process, and Operating System allocates the CPU time for each procss. And the process scheduling plays important role to keep the CPU busy all the time.  ⏩   Followings are some objectives of Process Scheduling :-  i > To increase the amount of users within acceptable response times.  ii > To maintain the balance between response and utilization of system. iii > To decrease the enforce priorities and  give reference to the processes holding the key resources.      ⇰  PROCESS SCHEDULAR A scheduler carries out the pro cess scheduling work. Schedulers are often implemented so they keep all computer resources busy and  allows multiple users to shar...

Atomic Transaction In Operating System

All the synchronization techniques we have studied are essentially low level as like semaphores. They require the programmer to involved with all the details of mutual exclusion, critical region management, deadlock prevention, and crash recovery. An abstraction exists there  and is widely used in distributed systems. We will call it an  atomic transaction,  or simply  transaction.   The term  atomic action  is also widely used. The mutual exclusion of critical section ensures that the critical sections are executed automatically. That is, if two critical sections are executed concurrently, the result is equivalent to their sequential execution in some unknown order.   In many cases we would like to make sure that a critical section forms a single logical unit of work that either is performed in its entirely or is not performed at all. An example is funds transfer, in which one account is debited and another is credited. Clearly, it is essential f...