What are the static members and static member functions?
A static member function can only access static data member, other static member functions and any other functions from outside the class. Static member functions have a class scope and they do not have access to the this pointer of the class.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between public and private data members?
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
How would you use the functions memcpy(), memset(), memmove()?
What is the use of setprecision in c++?
What is a hash function c++?
Briefly describe a B+ tree. What is bulk loading in it?
Is C++ case sensitive a) False b) Depends on implementation c) True
Show the declaration for a static function pointer.
Mention the ways in which parameterized can be invoked. Give an example of each.
what you know about c++?
Write about the role of c++ in the tradeoff of safety vs. Usability?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?