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 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 share system resources  to achieve  multiprogramming .  There are  mainy three types of pro

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 types:-  i> System  Process. ii> User Process. Early computers allowed only one program be ex

Semaphores In Process Synchronization

   ⇰  Semaphores :-   Semaphore is actually a method or tool to prevent race condition. Race condition can cause loss of data or even deadlock situation. For prevention from these conditions, the semaphore is one of the method.  Semaphore was proposed by Dijkstra in 1965. Simaphore    is a very significant technique to manage concurrent processes.  Semaphore is useful tool in the prevention of race condition. But the use of semaphore never means a guarantee that a program is free from these problems.     Semaphore is an integer variable which is used in mutual exclusive manner by various concurrent cooperative processes in order to acheive synchronization. Hence semaphore is one of the way to achieve synchronization.  Semaphore is basically  a variable which is non-negative and shared between threads. This variable is used to solve the critical section problem and to achieve process synchronization in the multiprocessing environment. Semaphore contains some operations as f