How can I hide my friends in Facebook

  1. log in to your Facebook profile [to do that you need your e-mail and password]

    fb log in 300x23 How to Hide Friends on Facebook?
  2. in upper right corner click on your name [the one next to small profile picture]

    fb timeline friends2 300x14 How to Hide Friends on Facebook?
  3. click on your friends box which is located among photos, maps, likes, etc. under your cover profile photo. Now you should see the list of all your Facebook friends

  4. Click on Edit
    enter image description here

  5. In the popup, click on the icon from the right—in this case the globe, but you might have a different icon, like friends
    enter image description here

  6. Select Only me (or whatever other option you want)



    enter image description here

 Done!!!  Your Friends list Wiil hidden succesfully..

Related Tags :  hide friends on facebook , How to hide friend list in Facebook Timeline , How do you hide friends on Facebook? , How to Hide Your Facebook Friends List , Is it possible to hide some Facebook friends from others?

How see Pending facebook REQUESTS

 

currently facebook does not supports to check Pending Facebook Requests but today i came with a new trick to check The awiting facebook requests. Simply follow below given steps :


Pending Friend Requests - Load Pending Presented by Modernhackerss
1.
Click this button (or click here)
2.

A small window popup (it take seconds to load)

Press Ctrl + A to select all the text

Type Ctrl + C to Copy the text to the clipboard
3.

Click inside this box and press Ctrl + V to Paste the text into this box


Click the Load Friend Requests button

 Related Tags: Is there a way to see a list of pending friend requests on Facebook? , how to check facebook pending requests , Find your Pending Friend Requests , How To View & Cancel Pending Friend Requests In Facebook , How to View Pending Friend Requests in Facebook , How to Check your Pending Friend Requests on Facebook, How to See Friend Requests You Have Sent on Facebook

Objects AND Classes

The Key Concept of Object oriented programming language C++ is Class. A  Class is a fundamental language construct for creating the complex user-defined data types. It distinguishes C++ From C language. Its relative importance can be seen from the fact that before the name C++ was coined, the language is called C with Classes.
Major difference between C and C++ is Security. In C language Functions can Access the members of the structures and may accidentally manipulate structure`s data and make it inconsistent. Its because members of structures can be accessed freely. (Security to data is not being rpovided and all members of structure are public, But in case of C With CLASSES (C++) Structures members are Private (Security is being Provided).

Basic Structure of Class is Shown Below:

class classname
{
private:
  data_members;
  members_functions;
public:
  data_members;
  members_functions;
};

Every Class specification begins with a keyword class which informs the compiler that you are specifying a class.
The Detailed information of various parts that it contains given below:

classname : it is only the name of the class given by the programmer. The name of the class should be such that it should convey the purpose  for which it is designed.

{ : It is the opening of a class And body of class is given below it.

Body : The body of a class Consist of variables and associated functions which are collectively known as members of the class. The members of the class either br private or public.
The members which are private in a class can only be accessed by members of the same class and not from outside the class. On the other hand, public members are not only accessible from within a class but also from outside the class.