Latest Answer: The advantage of object-oriented modeling is the fact that objects encapsulate state expressed by attributes and behavior specified methods or operation and they are able to communicate by sending and retrieving messages. Using the advantages of object-oriented ...
Latest Answer: Classes and objects are separate but related concepts. Every object belongs to a class and every class contains one or more related objects. A Class is static. The attributes of a class don't change. An Object on the other hand has a limited lifespan. ...
Latest Answer: 4bytes ...
Latest Answer: There are three differences. 1. In Java constructor has its class name. that can be unique. In .NET it has "NEW" by name. 2.It does not have any return type. 3. It cannot be subclass. ...
Latest Answer: A constructor is a member function of a class that is used to create objects of that class. It has the same name as the class itself, has no return type, and is invoked using the new operator. An ordinary member function has its own name, a return type ...
Latest Answer: other object oriented languages are c++ & simula 67 ...
Latest Answer: arulkumar: No, Void pointer is a pointer it is automatically type casted, we can assign to any pointer. But NULL pointer is a pointer which holds 0 (zero) as its content. (i.e) It doesn't pointing anything. ...
Latest Answer: Dangling pointers and wild pointers in computer programming are pointers that do not point to a valid object of the appropriate type, or to a distinguished null pointer value in languages which support this. Dangling pointers arise when an object is deleted ...
Latest Answer: Object-based language" may be used to describe any programming language that is based on the idea of encapsulating state and operations inside objects. Other than VB and java script examples of object-oriented languages include Simula, Smalltalk, ...
Latest Answer: Link list is a dynamic data structure for storing different type of data which may be primitive data types or user defined data types like structs and classes..Link list always contain the data types which are to be stored in the linked list and a pointer ...
View page << Previous 1 2 [3] 4 5 6 7 Next >>

Go Top