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

Makson Interview Questions
Questions Answers Views Company eMail

which type of signal used in instrument?

3 8569

Post New Makson Interview Questions




Un-Answered Questions

What is the pay scale type?

535


What is spark reducebykey?

182


What are the different ways to pass data in swift?

449


How do I know if my hard drive is corrupted?

503


What are the keywords used to access data from "multiple companies" and "one company to another company".

5






Why is SWAM usage discouraged?

481


How to generate create function script on an existing function?

585


What is CLI?

476


What is general insurance policy? What does it cover? : insurance sales

361


Differentiate between source qualifier and filter transformation?

987


Explain the selection sort algorithm?

634


What is “dirty read” in JDBC? Which isolation level prevents dirty read?

583


What does registry editor do?

461


Do web servers have ip addresses?

526


#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2056