Describe the difference between a Thread and a Process?
Answer Posted / nk
We can execute a process (EXE) but threads can be created
and executed from inside a process
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What is an interface in oop?
What are constructors in oop?
Why oops is important?
What is polymorphism in oop example?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
How long to learn object oriented programming?
What is static in oop?
Can abstract class have normal methods?
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 is polymorphism and example?
Get me a number puzzle game-program
How do you define a class in oop?
What is abstraction encapsulation?
write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).
What is polymorphism what are the different types of polymorphism?