Tell us about yourself.

Answer Posted / rajanikanth

Hi
I am Rajanikanth,elder son of Mrs & Mr Mangamma Krishna. I have two siblings,one brother who has completed his post graduation and one sister who has completed her graduation. We have a joint family and I came from middle class family.

Coming to my studies I have completed my MCA in 2011,from sri indu college of engineering and technology,hyderabad.

Coming to my strengths, my self confidence and my patience.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#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


What is byval and byref? What are differences between them?

1691


What is polymorphism programming?

607


What is encapsulation selenium?

554


#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

2172






What are the components of marker interface?

606


What are the types of abstraction?

560


What is polymorphism explain?

695


write knight tour problem which is present in datastructure

2168


write a programe to calculate the simple intrest and compund intrest using by function overlading

1670


What is the benefit of oop?

571


What does it mean when someone says I oop?

587


What is overloading in oop?

577


Why is it so that we can have virtual constructors but we cannot have virtual destructors?

3848


What polymorphism means?

624