Total Questions:-255 Goto Page:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
R4R ---> Articles--> C++ -->C++ Articles List
Page 1
Articles:
Give the name some pure object oriented languages.
Post Your View
ViewNames are there:
> Smalltalk
> Java
> Eiffel
> Sather. More --- >>
By:Umang Date:
Articles:
What is an orthogonal base class? Post Your View
ViewIts a normally a base class if two base classes have a no overlapping properties methods they are said to be orthogonal to each other. A class can be More --- >>
By:Umang Date:
Articles:
Declare a void pointer. Post Your View
Viewvoid pointer bassicaly used to store address of any type of variable. This is very useful when we want a pointer to point to data of different types a More --- >>
By:Umang Date:
Articles:
Difference between a "assignment operator" and a "copy constructor" Post Your View
Viewmany diff are there :
> Copy constructor copies a existing object to a non existing object, which we are going to create. Assignment operator can hap More --- >>
By:UMANG Date:
Articles:
Explain why encapsulation is required? Post Your View
ViewEncapsulation bassically defined as :
> Encapsulation genral meaning is information hiding.
> The purpose of efficiency of memory and speed.
> The More --- >>
By:Umang Date:
Articles:
give me a any two main roles of Operating System? Post Your View
Viewmain roles are there :
> As a resource manager
> As a virtual machine More --- >>
By:Umang Date:
Articles:
How can you catch all the exceptions without specifying individually? Post Your View
ViewAll the exceptions can be caught without specifying them individually by using ellipsis with catch.
Syntax is there:
catch (�)
{
���
� More --- >>
By:Umang Date:
Articles:
How do you link a C++ program to C functions? Post Your View
ViewBy using the extern "C" linkage specification around the C function declarations.
Programmers should know about mangled function names and type-safe More --- >>
By:Umang Date:
Articles:
What are anonymous structure, unions and what are their uses? Post Your View
ViewAnonymous unions are standard C++, and they can be found inside an object or inside a namespace. But Anonymous structures are not standard C++, theref More --- >>
By:UMANG Date:
Articles:
What are �do-nothing� functions? Post Your View
View�Do-nothing� functions bassicaly type of ones a function which are just defined but are not used. More --- >>
By:Umang Date:
Go:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
Contact Us
|