Is facebook written in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Write about the scope resolution operator?

0 Answers  


Can a constructor be private?

0 Answers  


What is std :: flush?

0 Answers  


Is c or c++ more useful?

0 Answers  


int *p = NULL; printf("%1d",p) ; what will be the output of this above code?

3 Answers   Microsoft,






what is multi-threading in C++?

0 Answers  


How do you initialize a class member, class x { const int i; };

8 Answers   emc2,


What is the difference between the functions memmove() and memcpy()?

0 Answers  


How do you initialize a string in c++?

0 Answers  


What is istream and ostream in c++?

0 Answers  


What is the last index number in an array of 100 characters a) 100 b) 99 c) 101

0 Answers  


class Alpha { public: char data[10000]; Alpha(); ~Alpha(); }; class Beta { public: Beta() { n = 0; } void FillData(Alpha a); private: int n; }; How do you make the above sample code more efficient? a) If possible, make the constructor for Beta private to reduce the overhead of public constructors. b) Change the return type in FillData to int to negate the implicit return conversion from "int" to "void". c) Make the destructor for Alpha virtual. d) Make the constructor for Alpha virtual. e) Pass a const reference to Alpha in FillData

2 Answers   Quark,


Categories