Have you ever used threads?
Answers were Sorted based on User's Feedback
Answer / ramakrishna yechuri
Thread concept is not used for desktop application.
Also u cannot acheive multi-threading by single processor.
Threads are mainly used for serverside programming eg
A server has to sent a single response to many request at
same time
also in devoloping games like bow and arrow.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / roger
yey, problems arrise with the syncronisation of threads,
and sharing data. these are resolved using semophores and
Mutexes.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / yathirajulu
yes, i used in server-side programming and most probably in
real-time scenario in many ways.
chatting,e-mailing,shopping-cart.
| Is This Answer Correct ? | 0 Yes | 1 No |
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
Program to check whether a word is the first word of the sentence.
When is a memory allocated to a class?
Can we call a base class method without creating instance?
Is abstract thinking intelligence?
What is the use of unnamed namespaces in OOPS? The only advantage I know is that they dont need the scope resolution operator while accessing them. I want to know some other advantages of unnamed namespaces...
Write a program to reverse a string using recursive function?
What is the difference between C++ and java?
Define a class to represent a bank account. Include the following members: Data Members: Name of the Depositor Account Number Type of Account Balance amount in the account Member Functions: To assign the initial values. To deposit an account. To withdraw an amount after checking the balance. Write a C++ main program to display account number, name and balance.
Write a macro for swapping integers
What is the fundamental idea of oop?
Why is polymorphism used?