what is multithreading in c++ ,
what is difference between multithreading and
singlethreading.
Answer Posted / lp
C++ allows to to build your own multi-threading libraries by
making use of system calls, but there is no standardized
support for multi-threading. Reasons? Following are the few
of them:
1. You decide the performance of your system by designing
simplified wrappers over the system call to support
multithreading. Get-What-You-Want and Pay-For-What-You-Want,
Dont-pay-for-what-you-dont-want!!
2. Standardizing support may hide some powerful system
level functionality unique to a a particular
multi-threaded-processor!
| Is This Answer Correct ? | 19 Yes | 4 No |
Post New Answer View All Answers
What exactly is polymorphism?
How Do you Code Composition and Aggregation in C++ ?
what is difference between class template and template class?
What is encapsulation in ict?
What is oops in simple words?
What is polymorphism what is it for and how is it used?
What is difference between multiple inheritance and multilevel inheritance?
What are classes oop?
What is abstraction and encapsulation?
What is encapsulation and abstraction? How are they implemented in C++?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What is super in oop?
write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.
What is abstraction example?
Can enum be null?