What is solid in oops?
No Answer is Posted For this Question
Be the First to Post Answer
Hi All, I am new to programming and want to know how can i write a code to take input of 2 numbers from user and swap it without using a temp variable?
What are the valid types of data that the main () can return in C/C++ language
Have you ever used threads?
What is polymorphism what is it for and how is it used?
how to tackle technical questions
What is the real time example of encapsulation?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What does enum stand for?
3. Differentiate verification and validation.
What Is a Polymorphism? How many types of polymorphism and whats that use in application?
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?