Differentiate between the message and method?



Differentiate between the message and method?..

Answer / ritesh pal

Message:

Objects communicate by sending messages to each other.

A message is sent to invoke a method.

Method:

Provides response to a message.

It is an implementation of an operation.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Define Virtual function in C++.

0 Answers   iNautix,


How do c++ struct differs from the c++ class?

0 Answers  


Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h

0 Answers  


Which algorithm do you like the most? Why?

2 Answers   Google,


What is a responder chain?

0 Answers  


How does c++ structure differ from c++ class?

0 Answers  


1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


What are stacks? Give an example where they are useful.

0 Answers  


class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.

5 Answers   Quark,


Write a Program to find the largest of 4 no using macros.

0 Answers  


What is friend class in c++ with example?

0 Answers  


Explain what are accessor methods?

0 Answers  


Categories