Tell us about yourself.

Answer Posted / ravi yadav

I am Ravi, I am from mubai and write now i am staiying in gurgaon sec 32,my qualification i have completed Bca from ptu
and my family mother concern is there are four member in my family including me my father my mother and my elder brother
my father is abusinessmen nad my mother is homemaker
nad my elder brother tl in nuteric info system nad i have one year experience in spatta tech.]and i am very telented and functual.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are oops methods?

566


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1393


#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

2067


Who invented oop?

657


What language is oop?

595






Is this job good for future? can do this job post grduate student?

1692


What do you mean by abstraction?

613


Why is polymorphism used?

584


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1657


What is abstract class in oop?

532


Explain the advantages of inheritance.

674


What is overriding in oops?

602


What is the significance of classes in oop?

590


What is polymorphism explain its types?

681


Can a destructor be called directly?

599