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 |
What is multilevel inheritance?
How many human genes are polymorphic?
What are the four main oops concepts?
Have you ever interfaced with a database?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort
define oops concept with example
Why oops is important?
monkey starts climbing up a tree 20ft tall,each hour ,it hops 3ft and slips back by 2ft .how much time it wil tak to reach top of the tree?
Can an interface inherit a class?
Contrast OOP and SOA. What are tenets of each?
1 Answers Siebel Systems, Wipro,
What is the example of polymorphism?
me get an assignent n its question is this 1.creat a set as in math i.ea={1,2} 2.insert element in it3. delete element don,t repeat any element 4.union 5. intersection of two sets plz help me i always pray for u n send me at ayeshawzd@hotmail.com f u have c++ how to program 5th addition then it is the 10.9 question in 10th chapter exercise