Tell us about yourself.

Answer Posted / k.sulthana

hi iam sulthana.iam from chennai.i completed my B.E in
DHAANISH AHMED COLLEGE OF ENGINNERING in chennai.
wel i did my schooling in OUR LADY'S MATRICULATION HR SEC
SCHOOL and i secured 76% in 12tgh and 78% in 10th.
wel coming to my family .my father is a buissness man and
my mother is a house wife.and i had two elder sister and
one younger brother.
wel my strength are quick learner,honesty,punctuality.

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is abstraction oop?

625


What is multilevel inheritance?

727


What is coupling in oops?

598


Why it is called runtime polymorphism?

577


Why do we use oop?

605






Get me a number puzzle game-program

1694


What is abstraction with example?

607


What is a class oop?

594


Whats is abstraction in oops?

593


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

1689


What does no cap mean?

592


What is the oops and benefits of oops programming?

555


#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

2068


Why do we use polymorphism in oops?

581


What is the point of oop?

656