Why u change company?

Answer Posted / kesavan j

good company,standard,higer salary. J Kesavan

Is This Answer Correct ?    1 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does and I oop mean in text?

627


What is an interface in oop?

600


What does it mean when someone says I oop?

587


What type of loop is a for loop?

688


i am getting an of the type can not convert int to int *. to overcome this problem what we should do?

1839






Which is better struts or spring?

624


What are the 3 pillars of oop?

624


What language is oop?

599


Describe these concepts: Polymorphism, Inheritance and Abstraction.

616


Why multiple inheritance is not possible?

606


#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

2071


What does and I oop mean?

620


What exactly is polymorphism?

612


What is polymorphism used for?

578


What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?

2110