Why u change company?

Answer Posted / yathirajulu

ya, i develop my fimalar frameworks Ajax,Jsf & Hibernate in
this company, as well as my friend suggested to join in this
orgnazation, if u get a chance.

Is This Answer Correct ?    0 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Are polymorphisms mutations?

706


#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

2070


Why do we use class in oops?

557


Why multiple inheritance is not possible?

606


What is encapsulation in oops?

541






What is polymorphism in oops with example?

533


What is encapsulation in oop?

612


Prepare me a program for the animation of train

2005


What is an example of genetic polymorphism?

653


What are the 4 pillars of oop?

674


How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction

1658


Why is abstraction used?

612


can inline function declare in private part of class?

3665


What is overriding in oops?

606


Can bst contain duplicates?

678