Frage im Vorstellungsgespräch bei OpenText

Q. Explain bubble sort, selection sort, insertion sort and difference between them. Q. What is the difference between class, abstract class and interface along with there use. Q. Given a sentence reverse all the words in it using recursion.

Antwort im Vorstellungsgespräch

Anonym

16. Juli 2018

void reverse(char *str) { if (*str) { reverse(str+1); printf("%c", *str); } }

10