Answer Posted /

Is This Answer Correct ?    Yes No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain update requests. What are its different types?

312


how do you plan any event ? such as preparing for a competetive examination

1204


Please brief me about number of pole in alternator.In single phase alternator coils are connected in star or series. How to calculate frequency for the same.

1406


What is 1em?

289


Explain drawbacks of joomla.

60






Explain the difference between mac and windows?

431


How apache spark works?

202


What is standard temperature?

1


Why xsl won’t replace css?

515


How do I specify that supported db engine version I might like the db instance to run?

106


#include #include #include #include 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

2155


What are laser diodes?

612


What are the major differences between sap db and other database systems?

1


Where do we do Budgeting for Campaigns? And what is the customization path for it?

1647


What is multithreading in jcl?

925