What things would you remember while making an interface?
No Answer is Posted For this Question
Be the First to Post Answer
What is the benefit of encapsulation?
What are the two types of polymorphism?
How one would use switch in a program?
What is class invariant in c++?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
What is c++ 11 and c++ 14?
What problems might the following macro bring to the application?
What are the benefits of operator overloading?
Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
Which is best c++ or java?