Skip to main content

Whatsapp chats and Status tricks 2021


whatsapp secret
whatsapp chatting and status trick

Today we will talk about some secret options of WhatsApp which you should know.

We will talk about how we can see someone's Whatsapp status without anyone knowing it. And at the same time, we will also talk about how to see someone's message, without getting blue ticked in his phone. To know about all this, read this entire article carefully. 

1. Let's know about Whatsapp

In the whole world, whatsapp is the only messenger application to be used the most. WhatsApp is a free application that anyone can use for absolutely free. We do not see any advertisement like other social media applications, meaning It does not earn any money from its own app.

WhatsApp was created by Brian Acton and Jan Koum in 2009. After 2014 facebook bought whatsapp, since then it is now owned by facebook. WhatsApp is now controlled and maintained by facebook. As you may know, Facebook is a multinational company. There are many products of Facebook which we use everyday such as Facebook, Instagram, Whatsapp.

2. How can we read the message sent by someone without having a blue tick in her phone  

Now we will know how do we read someone's message, without getting blue ticked.

a. So first of all, you open your whatsapp, after opening you will see three dots in the right side corner in the upper side. Click on it.

b. then click on setting option


c. After opening the setting, you click on the option with account.


d. then  click on privacy.   


e. After all you will see the read receipts option. If this option is already on, then turn it off.



After all these settings, you can read the message of anyone, without knowing the sender, that is, without stay blue tick in his phone. 

3. how we see someone whatsapp status anonymously

Many times we think that how can we see someone's Whatsapp status, secretly, who has imposed this status. What happens when we see someone's status, then our name shows in it that who has seen this status.

So to avoid all this, we will tell you about a good trick.Its setting is also the same.

a. click on setting option

b. After opening the setting, you click on the option name account.

c. then  click on privacy.   

d. After all you will see the read receipts option. If this option is already on, then turn it off.

This is exactly the same without reading a blue ticked message. If you do all these settings, then you can read all those messages, you don't want to tick blue, and you can also see its status secretly.

4. Side effect of checking someone status or reading messages without getting blue tick(anonymously)

If we disable read receipt option for viewing anonymously. So, if we put our status then we cant see who can see our status.

And same as status, we cant get blue tick after the sending massage someone after the seeing them. 

Comments

Post a Comment

Popular posts from this blog

Control Statements in c language

So, Today we are going on new topic name control statements in C language. In which we read Looping(For, While and Do While), Jumping(Break, goto and Continue) and Decision Control statements(Switch, If, If Else and  If else if ladder)  in C. Before you read this article May you also like our previous posts :-    Structure Of C Language Program   Variables & Datatypes In C Language    Format Specifier In C Programming  .   It may help you to understanding it. A Statement is the smallest unit that is a complete instruction in itself statements contains expression and usually end with a semicolon. Statements are of two Types:- Types of Statements in C  1. Sequential Statement   2. Control Statement Sequential Statements are statements which are executed by one in sequential manner. Control Statements are the statements which alter the flow of execution and provide better control to the programme. On the flow of execution. The...

Array in C Language Btech Bca Notes

 Array in C Language Btech Bca Notes An array is a data form that can hold several values all of the same type. An array is a collection of variable of the same type that are referral to by a common name. Also Read:   Beginner our view on C programming Language  . Array are vital for most programming language. They are collection of variables, which we call elements. Each of the element in an array is stored sequentially in the computeric memory.  This making it easy to  m anipulate them and navigate among them. Since all the elements in an array are of same type, array allows us to represent a group of similar elements as an ordered  sequence  and work on them as a whole (grouping together related data). Array organize data in such a way that it can be easily sorted. To create an array, we use a declaration statement. An array declaration should indicate three things: 1. The type of value to be stored in each element. 2. The name of the array. 3. The ...

Format Specifier In C Programming Btech BCA Notes

   Format Specifier In C Programming Btech BCA Notes Welcome, Hope you are doing well. Today we are talking about Foramat specifier in C language. We can also say Type Specifier In C.  So, Today we are read formate specifier as well as printf and scanf Formats in different situations and different conditions. Before you read this article May you also like our previous posts :-    Beginner our view on C programming Language     Structure Of C Language Program   Variables & Datatypes In C Language  . It may help you to boost Your Information. In C Programming language, Types specifier is a special piece of code which is used during the input and output. Type specifier inform the compiler about the type of data which will be entered or displayed during an input output operation. Input mans reading data from keyword while output means displaying data either on screen or a printer. In c – Language every datatype has its own type specifier...