Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

iNautix Data Structures Interview Questions
Questions Answers Views Company eMail

Write a program using mergesort technique.

536

Can you use Bubble Sort To sort the number of elements.

491

Write a code for dynamic allocation of array.

588

Write a program to reverse a link list.

535

Post New iNautix Data Structures Interview Questions




Un-Answered Questions

Why is cannibalism an inharmonious intraspecific ecological interaction?

64


How are .exe files created?

496


Why do we need collections in c#?

461


What is reuse identifier?

420


How looping has been done in AngularJS?

444






What is queue connection factory?

438


when you connect to DBM manager so which database is connect?

2084


Explain sim and rim instructions?

701


What do you mean by java swing?

509


Can you explain the modern technologies in sap? Do you use this in your current project?

556


Implementation methodology

1251


#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

2157


How can I delete temp files?

505


If you are ever stuck in an infinite loop, how will you break out of it?

541


What is pnp-sw-found ? : abap hr

857