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 |
Define Virtual function in C++.
How do c++ struct differs from the c++ class?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
Which algorithm do you like the most? Why?
What is a responder chain?
How does c++ structure differ from c++ class?
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?
What are stacks? Give an example where they are useful.
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.
Write a Program to find the largest of 4 no using macros.
What is friend class in c++ with example?
Explain what are accessor methods?